MakeSchool-Tutorials / Node-Reddit-Clone

📰 In this tutorial you'll build a clone of the "front page of the internet" Reddit using cutting edge server-side JavaScript and MongoDB.
15 stars 15 forks source link

Body Parser deprecated past on versions of Express > 4.16 #39

Open xScoopy opened 3 years ago

xScoopy commented 3 years ago

Installation and instantiation of 'body parser' shows deprecated status within the IDE. information gathered from stackOverflow shows that instead of pulling in body parser, we can simply use the following: app.use(express.urlencoded({ extended: true })); app.use(express.json());

starlightromero commented 3 years ago

Good catch @xScoopy! I just implemented this into the update. It will not be pushed to GH until the end of the term in a few weeks but do know that I am working on updates.