一、Clouda說明
Clouda是簡單,可依賴的實時Javascript框架。對一個想開發移動webapp的開發者來講,能夠使用clouda開發框架,實現一個功能和體驗與native app齊平的輕應用。
官網: http://cloudajs.org/。
百科:
http://baike.baidu.com/link?url=iC4ygMr35qdfNgZb12pZORU621YPYPCVHCA1i7iLM8d2t_l-rlbLAzdR04HqFO_4oMzi9VYQd_S6wZTRhyBt3q。
Clouda源碼: https://github.com/brandnewera/clouda。
Example代碼: https://github.com/brandnewera/clouda-examples。
二、實踐背景
操做系統:Windows XP SP3 32位。
三、環境搭建
Clouda依賴基礎,node.js、handlebars.js、MongoDB。
Nodejs配置。
下載nodejs: http://nodejs.org/download/。
安裝nodejs。
MongoDB配置,見 http://blog.csdn.net/segen_jaa/article/details/7580491。
四、下載sumeru模塊
啓動node.js command prompt javascript
D:\npm install -g sumeru
模塊下載完成後,進行解壓。 html
D:\sumeru init d:/sumeru
解壓後文件目錄結構以下。 java
五、聊天室源碼下載
Github上下載源碼: https://github.com/brandnewera/clouda-examples。
本地對應文件目錄。
其中chatroom即爲咱們所須要的信息。
Chatroom\app目錄覆蓋D:\sumeru\app。
六、啓動MongoDB
在MongoDB目錄下建立"data"目錄,並在建立的"data"目錄下建立"db"文件夾。
命令行啓動MongoDB node
D:\sumeru>cd D:\mongodb-2.4.6\bin D:\mongodb-2.4.6\bin>mongod --dbpath=D:\mongodb-2.4.6\data\db
七、啓動Sumeru
配置網址爲本機url。
D:\sumeru\app\server_config\site_url.js git
sumeru.config({ site_url:"http://192.168.2.45:8080/" //with a tailing slash });
192.168.2.45是我本機局域網IP。github
啓動sumeru。web
D:\>cd D:\sumeru D:\sumeru>sumeru start
八、訪問聊天室
用Chrome瀏覽器打開。
http://192.168.2.45:8080/debug.html/chatroom
mongodb