819 B
819 B
title
title |
---|
Use body-parser to Parse POST Requests |
Use body-parser to Parse POST Requests
The body-parser should already be added to your project if you used the provided boilerplate, but if not it should be there as:
"dependencies": {
"body-parser": "^1.4.3",
...
You need to do for this challenge is pass the middleware to app.use(). Make sure it comes before the paths it needs to be used on.