express bodyparser deprecated

JavaScript
body-parser has been deprecated from express v4.* 
Use body-parser package instead.
npm i body-parser

import bodyParser from "body-parser";//for typscript code only, use require for js
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));app.use(bodyParser.urlencoded());

app.use(bodyParser.json());
Source

Also in JavaScript: