2. 安裝 Express.js
3. 建立 Express-HelloWorld.js$npm install express --save
4. 執行 Express-HelloWorld.jsThis file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
var express = require('express'); var app = express(); app.route('/Node').get(function(req,res) { res.send("Express route on Node"); }); app.route('/Angular').get(function(req,res) { res.send("Express route on Angular"); }); app.get('/',(function(req,res){ res.send('Hello, World! (via Express)'); })); var server=app.listen(3000,function() {});
5. 觀查執行結果:$node Express-HelloWorld.js
參考資料
Expressjs.com: Hello world example
Node.js Express Tutorial