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
The body parser middleware doesn't need to be executed when required.
This line: var bodyParser = require('body-parser')();
Should look like this: var bodyParser = require('body-parser');
Otherwise, works like a charm 👍
The text was updated successfully, but these errors were encountered:
The body parser middleware doesn't need to be executed when required.
This line:
var bodyParser = require('body-parser')();
Should look like this:
var bodyParser = require('body-parser');
Otherwise, works like a charm 👍
The text was updated successfully, but these errors were encountered: