You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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());
The text was updated successfully, but these errors were encountered:
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.
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());
The text was updated successfully, but these errors were encountered: