Skip to content

Instantly share code, notes, and snippets.

View MuqThe2nd's full-sized avatar

Muqtadir Ahmed MuqThe2nd

  • Koch Technology Center
  • Bengaluru
View GitHub Profile
var http = require('http');
var server = http.createServer( function (request, response) {
response.writeHead(200, { 'content-type' : 'application/json'});
response.end(JSON.stringify({hello: 'Server'}));
});
server.listen(3000);
console.log("Http server started");