let h=require(‘http‘) //创建服务器实例 let server=h.createServer() server.listen(8080,()=>{ console.log(‘hi‘) }) // server.on(‘request‘,(req,res)=>{ //req中包含了请求对象,res设置响应 res.end(‘abc‘) })
node http
原文:https://www.cnblogs.com/buchizaodian/p/14753888.html