基本概念

程式範例

請用記事本(或其他類似的軟體)輸入以下的程式碼並存成hello.js檔案。

var http = require('http');

http.createServer(function (request, response) {
    response.writeHead(200, {'Content-Type': 'text/plain'});
    response.end('Hello World\n');
}).listen(8000);

console.log('Server running at http://127.0.0.1:8000/');

這是一個簡單的範例,執行後 Node.js 便會啟動一個監聽埠號 8000 的 HTTP 伺服器。

執行

在你存程式碼的地方,按著SHIFT+右鍵,開啟命令提示字元的視窗,輸入以下指令:

node hello.js

你應該會看到類似這樣文字的畫面

Server running at http://127.7.7.1:8000

這時你打開瀏覽器,輸入http://127.7.7.1:8000到網址列,就會看到結果囉!到此,你的第一個 Node.js 程式就完成了,並且也寫好了個簡單的 HTTP 伺服器。

其他資源