Asim JunaidforAsim Junaid Codesasimjunaidcodes.hashnode.net·Jan 26, 2022CRUD Operations with Nodejs in MongoDBObjective Perform CRUD operations on MongoDB database by using Nodejs. We will be using an example of a library database in which we will create, read, update and delete documents for a member in the members collections of the database. Prerequisite...Adarsh Srivastava and 5 others are discussing this6 people are discussing thisDiscuss·36 likes·433 readsNode.js
Faruk Abdulla MunshiforFaruk's blogfaruk.hashnode.net·Jan 26, 2021MongoDB Basic Shell Commands (part-1)Importing Data When you are handling data in JSON format mongoimport --uri="mongodb+srv://<your username>:<your password>@<your cluster>.mongodb.net/sample_db" --drop sample.json Here the --drop flag is used to wipe out already existing data, the da...Discuss·31 likes·177 readsMongoDB Basic Shell CommandsDatabases
Otse ObandeforOtse Obande's Blogotse.hashnode.net·Mar 12, 2020FeaturedHow Our MongoDB Data Was Kidnapped and How You Can Protect Your MongoDB from Data KidnappersA few months ago I worked on a project and the application data got kidnapped 2 months after our team deployed the application. You might be wondering what Data Kidnapping means. Well, Data Kidnapping is the process of gaining unauthorised access to ...Discuss·13 likes·572 readsMongoDB
Sarthak Batraforamplitude.hashnode.net·Mar 2, 2023Setup MongoDB docker container quick!Pre-requisites: Basic understanding of how to run a docker image Basic understanding of what MongoDB is. For when you just need to spin up a quick MongoDB server don't want to spin up a MongoDB Atlas instance (Ugh, sign up, login, spin up a serve...DiscussMongoDB
Vivekananthan Pasupathi forVivekananthan Pasupathi's Dev blogpvivek.hashnode.net·Jan 2, 2023Indexing on MongoDB Collection - Part 1Indexing makes the read queries faster. We can apply indexing on any of the fields in the document including the embedded fields. When documents are indexed mongo DB will search with filtered offset first rather than doing COLLSCAN ( column-span) on ...Discuss·31 readsMongoDB
Collins KariukiforColloKariscollokaris.hashnode.net·Nov 22, 2022CRUD operations in MongoDBThis article covers CRUD operations in MongoDB. Prerequisites MongoDB installed on your computer - Install MongoDB Familiarity working with the terminal Introduction MongoDB is a structured NoSQL document database. Structured means that just like o...Discuss·285 readsMongoDB
Rukayat Balogunforcode-with-kemirukayat-balogun.hashnode.net·Sep 1, 2022MongoDB Snip itTo create a database use <database name> use school #creates a database name school instance output 'switched to db school' create a collection db.<collection name> db.staff #creates a collection name "staff" instance db.staff.insertOne({"name": "...Discuss·35 readsMongoDB
Abser·AriforAbserabser.hashnode.net·Jul 9, 2022How Cloud Develop Kit from Google designed the docstore interfaceRefer Docstore · Go CDK urls.go - google/go-cloud - Sourcegraph driver.go - Go Design objectives: through the abstraction layer, we can mask differences, provide services in a standardized way, and configure business applications through descripti...Discuss·150 readsCloud
Aayush BiswasforAayush Biswas's Blogaayushbiswas.hashnode.net·Feb 12, 2022How to use MongoDBHey everybody welcome to my blog. Today we will be learning about MongoDB. First of all, why is MongoDB called NoSQL actual thing is it is not SQL but more specifically not only SQL and that means suppose a product has a name, description, price, an...Discuss·174 readsMongoDB
Karan JantheforKaran Janthekaranjanthe.hashnode.net·Feb 1, 2022How to connect MongoDB to Node.js using mongoosemongoose is a js library that lets you connect node.js with your mongodb cluster in mongodb atlas, it gives you a lot of services like creating schema doing CRUD operation, In this blog, we will learn how to connect Node.js with MongoDB, so let's get...Discuss·1 like·307 readsJavaScript
Asim JunaidforAsim Junaid Codesasimjunaidcodes.hashnode.net·Jan 26, 2022CRUD Operations with Nodejs in MongoDBObjective Perform CRUD operations on MongoDB database by using Nodejs. We will be using an example of a library database in which we will create, read, update and delete documents for a member in the members collections of the database. Prerequisite...Adarsh Srivastava and 5 others are discussing this6 people are discussing thisDiscuss·36 likes·433 readsNode.js
Asim JunaidforAsim Junaid Codesasimjunaidcodes.hashnode.net·Jan 25, 2022MongoDB CRUD Operations with Mongo ShellBrief Introduction MongoDB is a NoSQL database developed by MongoDB Inc. The important part that you need to know is that it is a document-oriented database platform. This means the data is stored as documents (in place of rows/records/tuples in SQL)...Adarsh Srivastava and 5 others are discussing this6 people are discussing thisDiscuss·12 likes·240 readsMongoDBVery helpful read👍👍 keep it up❤️❤️❤️ 11
Teniola FatunmbiforTeniola Fatunmbidevteni.hashnode.net·Dec 4, 2021How To Fix Exitcode:100 In Mongod Service: MongodbIf you're trying to configure MongoDB on your Ubuntu 20.04, one of the problems you might encounter is working with the mongod service. This article explains how to fix the exitcode:100 error and why it pops up when you try to start a mongod service ...Discuss·145 readsMongoDB