Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

express bodyparser deprecated

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
Source by medium.com #
 
PREVIOUS NEXT
Tagged: #express #bodyparser #deprecated
ADD COMMENT
Topic
Name
4+2 =