UNPKG

pm25

Version:

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

12 lines (8 loc) 180 B
require('pmx').init({ http : true }); var http = require('http'); var server = http.createServer(function(req, res) { res.writeHead(200); res.end('hey'); }).listen(8000);