File size: 336 Bytes
23614c6
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
const http = require("http");
http.createServer((req, res) => {
  if (req.url === "/health") {
    res.writeHead(200, {"Content-Type":"application/json"});
    res.end(JSON.stringify({ok:true,uptime:process.uptime()}));
  } else {
    res.writeHead(200, {"Content-Type":"text/plain"});
    res.end("OK");
  }
}).listen(7861);