2018年2月16日 星期五

【Node.js】在瀏覽器的localhost:8080印出hello world


var http = require('http'); //引入內建的module(模塊),http功能是以伺服器方式運作node

http.createServer(function (req, res) {
    res.writeHead(200, {'Content-Type': 'text/html'});
    res.end('Hello World!');
}).listen(8080);

沒有留言:

張貼留言