Skip to content

Instantly share code, notes, and snippets.

@harsh4870
harsh4870 / simper-node.js
Last active January 9, 2018 13:52
simple node js server
http.createServer(function (request, response) {
// Send the HTTP header
// HTTP Status: 200 : OK
// Content Type: text/plain
response.writeHead(200, {'Content-Type': 'text/plain'});
// Send the response body as "Hello World"
response.end('Hello World\n');
}).listen(8081);