Node.js 項(xiàng)目創(chuàng)建
- 新建文件夾myapp
- 在你項(xiàng)目的根目錄下創(chuàng)建一個(gè)叫 server.js 的文件焚刺,并寫入以下代碼:
var http = require('http');
http.createServer(function (request, response) {
// 發(fā)送 HTTP 頭部
// HTTP 狀態(tài)值: 200 : OK
// 內(nèi)容類型: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// 發(fā)送響應(yīng)數(shù)據(jù) "Hello World"
response.end('Hello World\n');
}).listen(3000);
// 終端打印如下信息
console.log('Server running at http://localhost:3000');
使用Express 應(yīng)用生成器創(chuàng)建項(xiàng)目
http://www.expressjs.com.cn/starter/generator.html
- 安裝生成器 npm install express-generator -g
- express myapp(項(xiàng)目名稱)
- cd myapp
- npm install
- set DEBUG=myapp & npm start 或者直接運(yùn)行npm start
- 在瀏覽器中打開(kāi) http://localhost:3000/ 網(wǎng)址就可以看到這個(gè)應(yīng)用了
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者