Answers for "bodyparser has been deprecated"

2

'bodyParser' is deprecated.

// If you are using Express 4.16+ you don't have to import body-parser anymore. 
// You can do it just like this:

app.use(express.urlencoded({extended: true}));
app.use(express.json()) // To parse the incoming requests with JSON payloads
Posted by: Guest on August-15-2021
8

'bodyParser' is deprecated.

const express = require('express');

app.use(express.urlencoded({ extended: true }));
app.use(express.json());
Posted by: Guest on April-11-2021
1

bodyparser is deprecated

const express = require('express');

app.use(express.urlencoded({ extended: true }));
Posted by: Guest on May-21-2021

Code answers related to "bodyparser has been deprecated"

Browse Popular Code Answers by Language