UNPKG

pm2

Version:

Production process manager for Node.JS applications with a built-in load balancer.

10 lines (7 loc) 241 B
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', server.address().port); });