iisnode/test/functional/www/108_appsettings/hello.js

6 строки
240 B
JavaScript

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