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}/`);});
為什么從nodejs.org拷貝來的代碼運(yùn)行出錯(cuò)?
叁TROIS3765854
2016-09-10 13:22:46