18. Middleware and Error handler
Note:- from now onwards to test different API routes i will be using postman
What happen if we send empty request handler like this:-
const express = require("express");
const app = express();
const port = 3000;
app.get("/user", (req, res) =...
farazalam2017.hashnode.dev14 min read