DEV Community

KULDIP MOCHI
KULDIP MOCHI

Posted on

MongoDB Learn

Hello anyone suggests me good resources to learn MongoDB?

Top comments (1)

Collapse
 
gmcamposano profile image
gmcamposano
  1. university.mongodb.com/ -- is the best way to get good fast
  2. Mongodb has very good documentation -- you dont have to study line by line. Just try to understand and take notes on what it can do, that when you need to use those queries, operators, indexes... etc, you'll know where to begin reading.
  3. Try to build a todo app. But don't follow any tutorials, just try to do it asking questions in stack overflow, medium articles, etc... Just npm init and use postman or some other API testing method of your choice.
  4. In the process of doing the todo app, you'll need to begin constructing models. That is the time when you'll research Mongoose. From there on... its practice, practice, practice.

Hope it helps