Files
Jose Toledo 584f029d4d Update index.md (#19627)
Added clarification as to what needs to go in to the mount.
2018-10-21 10:24:20 -05:00

988 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",
    ...

All 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. Remember that body-parser returns with bodyParser.urlencoded({extended: false}). Use the following as a template:

app.use(middleware-function);

Help our community expand these hints and guides.