1. 程式人生 > >nodejs建立一個http服務

nodejs建立一個http服務

//引用http模組

var http=require("http");

//建立http服務 回撥函式
http.createServer(function(req,res){

// 寫頭資訊,表示返回一段html程式碼

res.writeHead(200,{"content-Type":"text/html"});

//寫html程式碼

res.write("<head><meta charset="utf-8"/></head>");

//輸出html程式碼結束相應流

res.end("你好\n")

//監聽埠ip

}).listen(1337,"127.0.0.1");

console.log("start server");

注意:這個檔案一定要utf-8格式儲存,否則出現亂碼

cmd  找到這個檔案的位置, node 檔名編譯他,這時候控制檯出現start server

在瀏覽器輸入地址: