Skip to content

Latest commit

 

History

History
12 lines (12 loc) · 247 Bytes

README.md

File metadata and controls

12 lines (12 loc) · 247 Bytes

treehouse-mongo-basics

How To

# open the mongo shell
mongo
# switch to your db, for example  "mongoBasics"
> use mongoBasics
# load the seed.js file
> load('./path/to/seed.js')
# check out the data you have!
> db.getCollectionNames()