mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
|
|
var http = require('http');
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
res.writeHead(200);
|
|
console.log(`New query`)
|
|
res.end('hey');
|
|
}).listen(process.env.PORT || 8089, '0.0.0.0', function() {
|
|
console.log('App listening on port 8089');
|
|
});
|