Quick Start đ˝ď¸ Video: Node.js & MongoDB - The CRUD Operations
-min-zxu1ytmak6.png)
If youâre using Node.js and want to learn how to quickly get started using MongoDB, Iâve created the video for you! Follow along in your favorite code editor and youâll discover the following:
- How to connect to a MongoDB database hosted on MongoDB Atlas from inside of a Node.js script (00:40)
- How MongoDB stores data in documents and collections (instead of rows and tables) (08:51)
- How to create documents using insertOne() and insertMany() (11:01)
- How to read documents using findOne() and find() (20:04)
- How to update documents using updateOne() with and without upsert as well as updateMany() (31:13)
- How to delete documents using deleteOne() and deleteMany() (46:07)
If you prefer text-based tutorials, start with the first post in this series. A complete list of all posts in this series is included at the bottom of each post (including this one!).
Below are the links I mentioned in the video.
- MongoDB Atlas
- How to create a free cluster on Atlas
- MongoDB University's Data Modeling Course
- MongoDB University's Javascript Course
Try it out and let me know what you think! What video do you want to see next?
All posts in the Quick Start: Node.js and MongoDB series:
- How to connect to a MongoDB database using Node.js
- How to create MongoDB documents using Node.js
- How to read MongoDB documents using Node.js
- How to update MongoDB documents using Node.js
- How to delete MongoDB documents using Node.js
- How to analyze your data using MongoDB's Aggregation Framework and Node.js
- Video: How to Perform the CRUD Operations Using MongoDB & Node.js (this post)