UNPKG

yunlongzha_try_nodejs

Version:

try it

6 lines 210 B
var http=require('http'); http.createServer(function(req,res){ res.writeHead(200,{"Content-Type":"text/plain"}); res.end('Hello,world') }).listen(1000); console.log('Server run at http://127.0.0.1.1000')