UNPKG

pm25

Version:

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

7 lines (5 loc) 135 B
var http = require('http'); http.createServer(function(req, res) { res.writeHead(200); res.end("hello world\n"); }).listen(8020);