UNPKG

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