标签:分享图片 完成后 image down ofo serve 测试 根据 windows
下载Node.js,官方网址:https://nodejs.org/en/download/然后在Visual Studio Code测试代码
var http=require(‘http‘);
http.createServer(function(req,res)
{
res.writeHead(200,{‘Content-Type‘:‘text/html;charset=utf-8‘});
res.end(‘我在用Node.JS写程序‘);
}).listen(3000,‘127.0.0.2‘)
console.log("Server running at http://127.0.0.2:3000");
最后在浏览器中访问http://127.0.0.2:3000 则显示
标签:分享图片 完成后 image down ofo serve 测试 根据 windows
原文地址:http://blog.51cto.com/13886532/2150205