为什么启动后,在页面出不来hello world呢
为什么启动后,在页面出不来hello world呢
为什么启动后,在页面出不来hello world呢
2017-04-14
地址输入错误。
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World\n');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
举报