hello-world.js 163 B

1234
  1. require("http").createServer(function (req, res) {
  2. res.writeHead(200, {"content-type":"application/json"})
  3. res.end(JSON.stringify({ok: true}))
  4. }).listen(1337)