iisnode/test/functional/www/116_configerror/hello.js

6 строки
184 B
JavaScript

var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/html'});
res.end('Hello, world!');
}).listen(process.env.PORT);