If you are using Express 4.16+ you don’t have to import body-parser anymore. You can do it just like this:
app.use(express.urlencoded({extended: true}));
app.use(express.json()) // To parse the incoming requests with JSON payloads
If you are using Express 4.16+ you don’t have to import body-parser anymore. You can do it just like this:
app.use(express.urlencoded({extended: true}));
app.use(express.json()) // To parse the incoming requests with JSON payloads