导航

 
var http = require('http'); 
http.createServer(function (req, res) {res.writeHead(200, {'Content-Type': 'text/plain'});res.end('Hello World\n'); }).listen(8124, "127.0.0.1"); 
console.log('Server running at http://127.0.0.1:8124/');

  

posted on 2018-07-10 14:41  slqt  阅读(424)  评论(0)    收藏  举报