million-stats/keep_alive.js

5 lines
122 B
JavaScript
Raw Normal View History

2020-08-14 22:31:55 +00:00
const http = require('http');
http.createServer(function(req, res) {
res.write("I'm alive");
res.end();
}).listen(8080);