mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
10 lines
276 B
JavaScript
10 lines
276 B
JavaScript
|
|
var http = require('http');
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end('hey');
|
|
}).listen(process.env.PORT || 8000, function() {
|
|
console.log('App listening on port %d in env %s', process.env.PORT || 8000, process.env.NODE_ENV);
|
|
});
|