Skip to content

Instantly share code, notes, and snippets.

@abhi11210646
Last active October 16, 2019 11:43
Show Gist options
  • Save abhi11210646/b36318fcacf6d09e16dda4c2befe51bd to your computer and use it in GitHub Desktop.
Save abhi11210646/b36318fcacf6d09e16dda4c2befe51bd to your computer and use it in GitHub Desktop.
const http = require("http");
const server = http.createServer((req,res)=>{
console.log("request came", req.url);
// faking 1 sec amount of work
setTimeout(()=>{
console.log("response sent", req.url);
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('okay');
},1000);
});
server.listen(3001,()=>{
console.log("listening...")
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment