寫了個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')
#補充:防火牆沒開