My first NodeJS app with MongoDB
==================================
1- Install NodeJS from https://nodejs.org/
2- Create directory in C: with name data and create db folder into it
3- Install MongoDB from https://www.mongodb.com/download-center
4- Use the Terminal( CMD ) and write these commands:
$ C:
$ cd "Program Files"
$ cd MongoDB\Server\3.0\bin
$ mongod
5- Use another Terminal( CMD ) to enter the "shopping" rout and write:
$ npm install
$ cd seed
$ node products-seeder
$ cd ..
$ npm start
6- Go to your browser and write: localhost:3000
7- Enjoy the program :)