aboutsummaryrefslogtreecommitdiff
path: root/node_modules/sax/examples/hello-world.js
blob: cbfa5184ecdd05e6a0a8b5ab48c1a4d50d32df85 (plain)
1
2
3
4
require("http").createServer(function (req, res) {
  res.writeHead(200, {"content-type":"application/json"})
  res.end(JSON.stringify({ok: true}))
}).listen(1337)