一、我們建立專案目錄。
> md hello-world
二、進入此目錄,定義專案設定檔package.json。
為了準確定義,可以使用指令:
D:tmpnodehello-world> npm info express version
npm http GET https://registry.npmjs.org/express
npm http 200 https://registry.npmjs.org/express
3.2.1
現在知道ExpressJS框架的最新版本為3.2.1,那麼設定檔為:
{
"name": "hello-world",
"description": "hello world test app",
"version": "0.0.1",
"private": true,
"dependencies": {
"express": "3.2.1"
}
}
三、使用npm安裝項目所依賴的套件。
> npm install
一旦npm安裝依賴套件完成,專案根目錄下會出現node_modules的子目錄。專案配置所需的express包都存放在這裡。如果相驗證,可以執行指令:
> npm ls
PS D:tmpnodehello-world> npm ls
npm WARN package.json hello-world@0.0.1 No README.md file found!
hello-world@0.0.1 D:tmpnodehello-world
└─┬ express@3.2.1
├── buffer-crc32@0.2.1
├── commander@0.6.1
├─┬ connect@2.7.7
│ ├── bytes@0.2.0
│ ├── formidable@1.0.13
│ └── pause@0.0.1
├── cookie@0.0.5
├── cookie-signature@1.0.1
├── debug@0.7.2
├── fresh@0.1.0
├── methods@0.0.1
├── mkdirp@0.3.4
├── qs@0.6.1
├── range-parser@0.0.4
└─┬ send@0.1.0
└── mime@1.2.6
此指令顯示了express套件及其相依性。
四、建立應用程式
現在開始建立應用程式本身。建立一個名為app.js或server.js的文件,看你喜歡,就選一個。引用express,並使用express()建立一個新應用程式:
// app.js
var express = require('express');
var app = express();
接著,我們可以使用app.動詞()定義路由。
例如使用"GET /"回應"Hello World"字串,因為res、req都是Node提供的準確的對象,因此你可以呼叫res.pipe()或req.on('data', callback)或其它。
app.get('/hello.txt', function(req, res){
var body = 'Hello World';
res.setHeader('Content-Type', 'text/plain');
res.setHeader('Content-Length', body.length);
res.end(body);
});
ExpressJS框架提供了更高層的方法,例如res.send(),它可以省去諸如添加Content-Length之類的事情。如下:
app.get('/hello.txt', function(req, res){
res.send('Hello World');
});
現在可以綁定和監聽埠了,呼叫app.listen()方法,接收同樣的參數,例如:
五、運行程式
現在運行程序,執行命令:
> node app.js
用瀏覽器存取位址:http://localhost:3000/hello.txt
可以看到輸出結果:
Hello World