bodyParser' is deprecated code example
Example 1: body parser deprecated
const express = require('express');
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
Example 2: express bodyparser deprecated
body-parser has been deprecated from express v4.*
Use body-parser package instead.
npm i body-parser
import bodyParser from "body-parser";
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
Example 3: body-parser deprecated
app.use(bodyParser.urlencoded());
app.use(bodyParser.json());
Example 4: body parser deprecated
const bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
Example 5: bodyparser is deprecated
const express = require('express');
app.use(express.urlencoded({ extended: true }));
Example 6: 'bodyParser' is deprecated.
app.use(bodyParser());