猿问

node如何开启一个http服务

慕前端25690
浏览 1245回答 1
1回答

Geoion

var http = require('http'); http.createServer(function (req, res) {   res.write('Hello World!');    res.end();  }).listen(8080);把这个内容保存成 xxx.js,然后运行node xxx.js一个简单的node http 示例
随时随地看视频慕课网APP
我要回答