body-parser deprecated undefined extended provide extended option
app.use(express.urlencoded({ extended: true }))
body-parser deprecated undefined extended provide extended option
app.use(express.urlencoded({ extended: true }))
vs code shows bodyparser deprecated
app.use(express.json()); //Used to parse JSON bodies
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";//for typscript code only, use require for js
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
body-parser deprecated
app.use(bodyParser.urlencoded());
app.use(bodyParser.json());
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us