如何利用node.js進行webapp的開發
阿新 • • 發佈:2019-01-28
-
安裝cnpm
國內npm映象庫,淘寶的cnpm,可以有效的提高下載nodejs包的速度。
npm install -g cnpm --registry=https://registry.npm.taobao.org
-
安裝express
-
cnpm install express
(如果沒有許可權就加上sudo)
-
安裝jade
cnpm install jade
安裝Express應用生成器
npm install express-generator
新建web專案
express myapp
獲得以下目錄:
create : myapp
create : myapp/package.json :npm依賴包
create : myapp/app.js :入口檔案
create : myapp/public :靜態資原始檔
create : myapp/public/javascripts
create : myapp/public/images
create : myapp/routes :路由
create : myapp/routes/index.js
create : myapp/routes/users.js
create : myapp/public/stylesheets
create : myapp/public/stylesheets/style.css
create : myapp/views :模板檢視檔案目錄
create : myapp/views/index.jade
create : myapp/views/layout.jade
create : myapp/views/error.jade
create : myapp/bin
create : myapp/bin/www :服務啟動函式
安裝第三方js外掛包
cnpm install -g bower bower install jquery
啟動伺服器
啟動這個應用: start Windows 平臺使用如下命令: set DEBUG=myapp & npm start