Skip to content

Instantly share code, notes, and snippets.

@brettvaida
Created July 20, 2020 21:00
Show Gist options
  • Save brettvaida/ab13ce8bb27701d4a8ec1f3835c50ac2 to your computer and use it in GitHub Desktop.
Save brettvaida/ab13ce8bb27701d4a8ec1f3835c50ac2 to your computer and use it in GitHub Desktop.
The most basic Node server
let http = require("http")
let app = http.createServer((req, res) => {
if (req.url == "/") {
res.end("Hello World")
} else {
res.end("Page Not Found")
}
})
app.listen(3000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment