//Exercise 1 Install mongodb from:
- https://www.mongodb.org/downloads. or sudo apt install mongodb
To verify that mongod is installed, you can try running mongod --version
//Exercise 2
Start mongod on port 27017 with data as the dbpath
1.at first terminal : mkdir data
, next cd data
, next mongod --port 27017 --dbpath=./data
2.at onother terminal run npm install mongodb