1. 程式人生 > >Node JS實現簡單網頁伺服器

Node JS實現簡單網頁伺服器

通過Node JS實現一個簡單網頁伺服器。、
通過瀏覽器開啟網頁輸入localhost:8888訪問Node_server,訪問到有hello world的網頁

//程式碼需執行在Node.JS環境
var http = require('http');

//返回一個http.Server例項
http.createServer(function(request,response){
    response.writeHead(200,{'Content-Type':'text/plain'});
    response.end('Hello World!');

}).listen(8888);//監聽8888埠
console.log('Server running at http://127.0.0.1:8888/');