Skip to content

Instantly share code, notes, and snippets.

@tamalchowdhury
Last active April 16, 2023 11:51
Show Gist options
  • Save tamalchowdhury/fd22fdae17f28abe2dcf1018412bb57e to your computer and use it in GitHub Desktop.
Save tamalchowdhury/fd22fdae17f28abe2dcf1018412bb57e to your computer and use it in GitHub Desktop.
Node js backend server code from Tamal Anwar Chowdhury's Reel
const express = require("express")
const app = express()
app.get("/", function(req, res) {
res.send(`<h1>Hello World</h1>`)
})
app.listen(5000, function() {
console.log("Server is running on port 5000");
})
// Watch the reel: https://fb.watch/jXCFQkYIY4/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment