使用node建立簡易http server
文章目錄
- 在index.html的目錄建立
server.js
檔 輸入
server.js
內容123456789101112131415161718192021222324252627var http = require('http');var fs = require('fs');//404 responsefunction sent404Response(response){response.writeHead(404,{"Context-Type":"text/plain"});response.write('Error 404:Page not found!'); //write a response to the clientresponse.end(); //end the response}//handle a user request functionfunction onRequest(req, res) {/*console.log("A user made a request "+ req.url);res.writeHead(200,{"Context-Type":"text/plain"});res.write('Here is some data.'); //write a response to the clientres.end(); //end the response*/if (req.method == 'GET' && req.url == '/') {res.writeHead(200,{"Context-Type":"text/plain"});fs.createReadStream("./index.html").pipe(res);//將"./index.html"傳入res參數內}else{sent404Response(res);}}//create a server object:http.createServer(onRequest).listen(8888); //the server object listens on port 8080console.log("Server is now running.")執行
server.js
node server.js
其實最簡單的方式就是安裝
http-server
模組。1npm i -g http-server執行
http-server
即可。