You can run `npm install body-parser` to add it as a dependency to your project instead of manually adding it to the `package.json` file.
This guide assumes you have imported the `body-parser` module into your file as `bodyParser`.
In order to import the same, you just need to add the following line at the top of your file:
```javascript
var bodyParser = require('body-parser');
```
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: