Node 建立 Web 伺服器
以下是演示一個最基本的 HTTP 伺服器架構(使用 8080 埠),建立 server.js 檔案,程式碼如下所示:
例項:
var http = require('http');
var fs = require('fs');
var url = require('url');
// 建立伺服器
http.createServer( function (request, response) {
// 解析請求,包括檔名
var pathname = url.parse(request.url).pathname;
// 輸出請求的檔名
console.log("Request for " + pathname + " received.");
// 從檔案系統中讀取請求的檔案內容
fs.readFile(pathname.substr(1), function (err, data) {
if (err) {
console.log(err);
// HTTP 狀態碼: 404 : NOT FOUND
// Content Type: text/plain
response.writeHead(404, {'Content-Type': 'text/html'});
}else{
// HTTP 狀態碼: 200 : OK
// Content Type: text/plain
response.writeHead(200, {'Content-Type': 'text/html'});
// 響應檔案內容
response.write(data.toString());
}
// 傳送響應資料
response.end();
});
}).listen(8080);
// 控制檯會輸出以下資訊
console.log('Server running at http://127.0.0.1:8080/');
接下來我們在該目錄下建立一個 index.html 檔案,程式碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鳥教程(runoob.com)</title>
</head>
<body>
<h1>我的第一個標題</h1>
<p>我的第一個段落。</p>
</body>
</html>
執行 server.js 檔案:
$ node server.js Server running at http://127.0.0.1:8080/
接著我們在瀏覽器中開啟地址:http://127.0.0.1:8080/index.html,顯示如下圖所示:
執行 server.js 的控制檯輸出資訊如下:
Server running at http://127.0.0.1:8080/ Request for /index.html received. # 客戶端請求資訊