This is a RESTful API for a store using nodejs, mongdodb and express as well as other useful tools which I am exploring while learning back-end development.
- install all project dependencies with
npm install
- start the development server with
npm start
ORyarn start
├── index.js
├── loadMockData.js
├── package-lock.json
├── package.json
├── README.md
├── controllers
│ └── products.js
├── db
│ └── connect.js
├── middleware
│ ├── error-handling.js
│ └── not-found.js
├── models
│ └── Product.js
└── routes
└── products.js