Skip to content

Instantly share code, notes, and snippets.

var http = require("http")
, server
;
server = http.createServer(function (req, res) {
res.writeHead(200);
res.end("<html><body><p>hi i am hidakaya</p></body></html>");
});
module.exports = server;