Category: MongoDB
-
Create API Connecting to MongoDB Part 2 create products and schema
This Article is a continuation of the Article create API Connecting to MongoDB Part 1 In this Article we will concentrate on creating the below : Product Schema First Create a File Call Model you can call it what ever you want Create Product .JS Create a Constructor for the Product.JS…….. and then export…
-
Create API Connecting to MongoDB Part 1
In this Artcle i will show you how to create API to connect to Mongo DB Database step by step. First Create a Folder call shop-api Anyway you can name the Folder what ever name you wanted Open Terminal and navigate to the folder ” shop-api ” Initialize Node Package Manager Node Package Manager…
-
Find Update and Remove Data from MongoDB
Find Update and Remove Data from MongoDB Find Update and Remove Data from MongoDB In this Article i will show you how to mess around with MongoDB DataBase Find Update Remove Finding Data db.product.find({“productName” :”Donut”}) Use the find() method and type in the Keyword and the field data that you want to find Update…
-
Install MongoDB in windows
Install MongoDB in windows Install MongoDB in windows, In this Article i will guide you through on how to install Mongo DB in Windows? What is Mongo DB ? Mongo is a no sequel database , it works with Documents in Json format , and has an Auto Generation ID for inserted Data. …