Posts for mongodb

How to Model your data in MongoDB

MongoDB is a database that is also known as a NoSQL database. In another word, MongoDB is a schema-based database that is used to store data in documents. It is highly scalable and powerful. It stores data by following a field-value data structure that is most likely JSON but in MongoDB, it is known as […]

January 28, 2022 in Node & Tutorials
Deven
Deven wrote

How to fix MongoError:e11000 duplicate key error collection

In this article, you are going to learn about how to fix MongoError:e11000 duplicate key error collection. Working in a NoSQL database gives you much flexibility but sometimes, this can be the reason for getting yourself in an unwanted situation like MongoError:e11000 duplicate key error collection. It is a common MongoDB error and occurs for […]

December 24, 2021 in Errors solved
Afolayan
Afolayan wrote

Building CRUD API using Restify Framework

A lot of countless options exist for building APIs with JavaScript frameworks these days, and each with their own advantages. This article will focus on explaining the steps to build an API with Create Read Update and Delete (CRUD) functions using the Restify Framework for Node.js. The project we’re going to be building would be […]

February 4, 2020 in Node & Tutorials