Skip to content

Instantly share code, notes, and snippets.

View arjunkori's full-sized avatar

Arjun Kori arjunkori

  • Koricorp LTD
  • Mumbai,Maharastra,India
  • 09:27 (UTC +05:30)
View GitHub Profile
{
"_id": {
"$oid": "586a0e6650369a23d4634efc"
},
"created_at": {
"$date": "2017-01-02T08:25:10.422Z"
},
"updated_at": {
"$date": "2017-01-02T08:25:10.422Z"
},
const http = require('http');
const PORT=3000;
var server = http.createServer(function (request, response) {
response.writeHead(200, {"Content-Type": "text/plain"});
response.end("Hello World\n");
});
server.listen(PORT);