- Get started with databases on Windows Subsystem for Linux
- how to completely remove mongoDB with all instance from ubuntu
- How do I remove old mongo tools?
- how can I see what ports mongo is listening on from mongo shell?
sudo lsof -iTCP -sTCP:LISTEN | grep mongoThis is result for mongodb running on my local computer: mongod 92 mongodb 12u IPv4 16464 0t0 TCP localhost:27017 (LISTEN) - How do I see what packages are installed on Ubuntu Linux?
- Data Modeling Introduction See section on Data Model Examples and Patterns -> Helpful explanation on how to think about relationships between collections
- Express Tutorial Part 3: Using a Database (with Mongoose) Altho MDN web docs is THE ref, found this not so straightfwd
- Connect MongoDB to Node using Express and Mongoose Has examples of using Postman
- How to use express with mongoose This seems to be the most straight fwd...
- Creating the User Model Building User model w some validation and password authentication
- How to Seed MongoDB Database From Node: The Simplest Way
- Mongoose order of methods
- Updating Documents in Mongoose Need to clear of the difference between documents and Models!!
-
Building query using chaining syntax See the section under Executing