MongoDB Tutorial For Beginners | Full Course

preview_player
Показать описание
MongoDB is great database for any project. In this tutorial you will learn how to get started with mongoDB.

MongoAtlas is a great service for a fully managed MongoDB which you should consider for your projects. Weather you want to use node js and mongodb, PHP, Java. MongoDB api has it all.

#mongodb #mongoatlas #mongodbcloud

⭐ Table Of Contents ⭐
00:00 - Intro
01:38 - Quick Word
02:39 - What is MongoDB
07:18 - Installing Docker
11:05 - Docker Compose
21:22 - Connect to MongoDB using Mongo Shell
26:48 - Create Database
31:56 - Collections
28:18 - Documents
44:47 - Insert Documents
48:01 - Using Find
53:06 - Update Documents
01:01:52 - Delete Documents
01:06:46 - Next steps

🙊 Here are the goods for all my videos video:

► Recommended Books

Clean Code

HTTP: The Definitive Guide

Clean Architecture

► Computer and Monitor

New Apple MacBook Pro

Dell 27 INCH Ultrasharp U2719D Monitor

Double Arm Stand Desk Mount

USB C Hub Multiport Adapter

► Camera Gear

Sony ILCE7M3B Full Frame Mirrorless Camera

Sigma 16 mm F1.4 DC DN

Sigma 33B965 30 mm F1.4 DC DC

Awesome Screen Saver

IDE I use for coding
- Iterm
- VsCode
- GoLand
- IntelliJ
- Sublime

💯 You can also follow me here:

❤️ Thanks for watching
Рекомендации по теме
Комментарии
Автор

I'm so glad you didn't cut out the misstakes you made, that helps so much more to understand whats going on.

fabianfriedrichs
Автор

Surprised you don't have more followers, the quality of your video's are absolutely amazing.

gtv
Автор

You have inspired me so much - thank you for teaching in perfect simplicity! Much love from New Orleans! 💪

TjSpoonManJacques
Автор

Just with the title you know this is going to be an amazing tutorial.
Thank you so much!

tryitagain
Автор

Here is the docker-compose.yaml file, if you do come across mapping or indentation errors, make sure to use 2 spaces rather than a tab wherever you get an error in the terminal:
version: “3.8”
services:
mongodb:
image: mongo
container_name: mongodb
ports:
- 27017:27017
volumes:
- data:/data
mongo-express:
image: mongo-express
container_name: mongo-express
restart: always
ports:
- 8081:8081

volumes:
data: {}

networks:
default:
name: mongodb_network

andrejohnv
Автор

42:47 db.student.insert(student) will trow: insertDeprecationWarning: Collection.insert() is deprecated. Use insertOne, insertMany, or bulkWrite.

On top of that db.student.count() will thow: DeprecationWarning: Collection.count() is deprecated. Use countDocuments or estimatedDocumentCount.

evgenykuznetsov
Автор

i cant find the docker composed yamal file in the description

moa-anims
Автор

For those wondering, the mongo command has been renamed to mongosh

Jacob-hpwj
Автор

Great Tutorial, I know MySQL database very will but for Mongo DB my previous knowledge was how to use it with Spring Boot only, now I had a really good idea how to do Basic CRUD queries and so on. Thanks Nelson

raedgeorge
Автор

i never thought MongoDB was soo easy... thanks nelson!!

mohammedbedru
Автор

hi man where can i find the files that you show in the video ?
there is no link for ...

kareem
Автор

hi just want to know where you have shared the docker yaml file.

miladbhat
Автор

I can't find the docker yaml file

maryamkouram
Автор

docker-compose.yaml text information below: (*note*: I left out the "environment" fields because a number of comments say they had trouble with those fields):

version: “3.8”
services:
mongodb:
image: mongo
container_name: mongodb
ports:
- 27017:27017
volumes:
- data:/data
mongo-express:
image: mongo-express
container_name: mongo-express
restart: always
ports:
- 8081:8081

volumes:
data: {}

networks:
default:
name: mongodb_network

greysongriffey
Автор

you're my hero, I don't have money to pay for your course but soon I'll asign up, really, you're awesome man!

MatheusdaRochaSena
Автор

Thanks for the course, Nelson! Really outstanding work.

franciscojavierramirezhern
Автор

thanks for the course :) is there any way to upload/interact with the data on mongo express/docker using scripts in Visual Studio instead of the terminal?

foxandeyes
Автор

where is the Docker file in the discription as u mentioned in the video

dhakshitham
Автор

Absolutely amazing. thank you And Eid Mubarak

Tooxcade
Автор

docker-compose.yaml missing
student.js file is also missing..

MrCupcakes