写了个demo(node官网那段hello world),在服务器上运行无问题,curl localhost也可以返回,但外网访问不了
const http = require('http')
http.createServer(function(req,res){
res.writeHead(200,{'Content-Type':'text/plain'})
res.end('hello world')
}).listen(8082)
console.log('server running on http://localhost:8082')
补充:防火墙没开