mirror of
https://github.com/Unitech/pm2.git
synced 2026-01-25 16:07:46 +00:00
9 lines
153 B
JavaScript
9 lines
153 B
JavaScript
|
|
var http = require('http');
|
|
var i = 0;
|
|
|
|
http.createServer(function(req, res) {
|
|
res.writeHead(200);
|
|
res.end("hello world\n" + i++);
|
|
}).listen(8000);
|