Skip to content

Instantly share code, notes, and snippets.

@adityathakurxd
Created November 4, 2021 11:46
Show Gist options
  • Save adityathakurxd/1e0f1a22f558cd868f782f2a5a38cde1 to your computer and use it in GitHub Desktop.
Save adityathakurxd/1e0f1a22f558cd868f782f2a5a38cde1 to your computer and use it in GitHub Desktop.
Template file for commonly used Node default code
const bodyParser = require("body-parser");
const express = require("express");
const app = express();
app.get("/", function(req, res){
res.send("Hello");
});
app.listen(3000, function(){
console.log("Happy and Running")
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment