- MERN Quick Start Guide
- Eddy Wilson Iriarte Koroliova
- 44字
- 2021-06-25 21:30:14
Getting ready
In this recipe, you will write a configurable logger middleware function. Before you start, create a new package.json file with the following content:
{ "dependencies": { "express": "4.16.3" } }
Then, install the dependencies by opening a terminal and running:
npm install