The package bodyParser is deprecated. You will get this warning with these lines of code:
app.use(bodyparser.json());
app.use(bodyParser.urlencoded({extended: true}));
If you are using Express 4.16+ you can now replace those lines with:
app.use(express.json());
app.use(express.urlencoded()); //Parse URL-encoded bodies
If you are using the latest express module use this:
app.use(express.json())
app.use(express.urlencoded({extended: true}))
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 }));
//body-parser package is depreciated, to parse express now you just need these
app.use(express.json()); //Used to parse JSON bodies
app.use(express.urlencoded()); //Parse URL-encoded bodies
const app = express()
app.use(express.json({ limit: "2mb" }));
app.use(express.urlencoded({ extended: true }));