Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rcoedo/ee5288dc101ec8e67abef3fff4f682fd to your computer and use it in GitHub Desktop.
Save rcoedo/ee5288dc101ec8e67abef3fff4f682fd to your computer and use it in GitHub Desktop.
This gist contains the examples for the article "Debugging Node.js Applications, Part One".
- https://medium.com/trabe/debugging-node-js-applications-part-1-f1cca5084356
- https://rcoedo.com/blog/2018/10/01/debugging-node-js-applications-part-one
const http = require("http");
const hostname = "127.0.0.1";
const port = 3000;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader("Content-Type", "text/plain");
res.end("Hello World\n");
});
server.listen(port, hostname, () => {
console.log(`The server is running at http://${hostname}:${port}/`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment