Answers for "body parse deprecated"

8

body parser deprecated

const express = require('express');

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

body parser deprecated

// bodyParsor is deprecated, most of the functionality is included in express
// on epxress 4.16 and above just replace bodyParser with express
// e.g 
const express = require('express')
app.use(express.urlencoded({extended: true}));
Posted by: Guest on May-27-2021

Browse Popular Code Answers by Language