最新回答 / Lemon156
var http = require('http');http.createServer(function(req,res){ res.writeHead(200,{'Content-type':'text/plain'}); res.end('Hello ,I love Node.js\n');}).listen(1337,'127.0.0.1');console.log('Server running at http://127.0.0.1:1337/');/*如何起一个web服务器:ndoejs...
2016-10-21