mongod --dbpath=data --bind_ip 127.0.0.1
Then:
Open another command window and then type the following at the command prompt to start the mongo REPL shell:
mongo
Then ..Clone this repository and then have fun playing around with some commands Like(in Order):
db
use conFusion
db
db.help()
db.dishes.insert({ name: "Uthappizza", description: "Test" });
db.dishes.find().pretty();