1var http = require('http'); 2 3http.createServer(function (req, res) { 4 res.writeHead(200, { 'Content-Type': 'application/json' }); 5 res.write(JSON.stringify(process.env)); 6 res.end(); 7}).listen(8080); 8 9