1. 引入 required 模組
使用require指令來載入http模組,並將例項化的HTTP賦值給變數http。
var http = require("http");複製程式碼
2.建立伺服器
使用http.createServer()方法建立伺服器,並使用listen方法繫結8888埠。函式通過request,response引數來接收和響應資料。
專案根目錄建一個server.js檔案。
var http = require('http');
http.createServer(function (request, response) {
// 傳送http頭部
// http 狀態值:200:ok
// 內容型別:text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// 傳送響應資料 “hello world”
response.end('hello world\n');
}).listen(8888);
// 終端列印如下資訊
console.log('Server running at http://127.0.0.1:8888/');複製程式碼
以上程式碼已完成一個可以工作的HTTP伺服器。
開啟瀏覽器訪問 http://127.0.0.1:8888/,
可看到 “hello world” 的網頁。