Skip to content

Instantly share code, notes, and snippets.

@krlicmuhamed
Created January 6, 2016 12:42
Show Gist options
  • Save krlicmuhamed/73ebf824d73ad0699c45 to your computer and use it in GitHub Desktop.
Save krlicmuhamed/73ebf824d73ad0699c45 to your computer and use it in GitHub Desktop.
//Lets require/import the HTTP module
var http = require('http');
//Lets define a port we want to listen to
const PORT=8080;
//We need a function which handles requests and send response
function handleRequest(request, response){
response.end('It Works!! Path Hit: ' + request.url);
}
//Create a server
var server = http.createServer(handleRequest);
//Lets start our server
server.listen(PORT, function(){
//Callback triggered when server is successfully listening. Hurray!
console.log("Server listening on: http://localhost:%s", PORT);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment