Check out my udemy Introduction to Database Engineering course
https://husseinnasser.com/courses
Learn the fundamentals of database systems to understand and build performant backend apps
Mongodb is a document-oriented database that fits into the family of NOSQL databases. In this video we will learn how to establish a connection from Javascript through NodeJS to a MongoDB database through the new mongodb nodejs driver. We will do the basic CRUD operations, create update delete and read.
Spinning a mongodb db
docker run -p 27017:27017 --name mdb mongo
Create a connection
Find
Insert
db.Employee.insert()
Remove
db.Employee.remove({Employeeid:22})
Update
db.Employee.update(
{"Employeeid" : 1},
{$set: { "EmployeeName" : "NewMartin"}});
Query
db.Employee.find().limit(2).forEach(printjson);
Count
db.Employee.count()
timecodes
0:00 intro
2:46 : Spin docker
4:45 : Connect to mongo
14:45 : Find Document
24:25 : Insert Document
27:20 : Update Document
30:20 : Delete Document
cards
1:45 Mongodb docker
Mongodb doc
https://mongodb.github.io/node-mongod...
Source Code
https://github.com/hnasr/javascript_p...
Support me on PayPal https://bit.ly/33ENps4
Become A Patron / hnasr
Stay Awesome!
Hussein