- MERN Quick Start Guide
- Eddy Wilson Iriarte Koroliova
- 63字
- 2021-06-25 21:30:17
Getting ready
In this recipe, you will see how to use the body-parser NPM module to parse the content body sent from two different forms encoded in two different ways. Before you start, create a new package.json file with the following content:
{ "dependencies": { "body-parser": "1.18.2", "express": "4.16.3" } }
Then, install the dependencies by opening a terminal and running:
npm install