MongoDB
0
Developer: MongoDB Inc.
0
Categories
Database Clients
Description
A source-available cross-platform document-oriented database program.
Review
MongoDB is a source-available cross-platform document-oriented database program. It has a great GUI tool named Mongodb Compass which makes it easy to create, read, update, and delete data.
NoSQL
Classified as a NoSQL database program, MongoDB uses JSON-like documents with optional schemas.
Code Example
Inserting and querying documents in MongoDB:
db.users.insertOne({
name: "Alice",
age: 28,
skills: ["JavaScript", "React"]
});
// Find users older than 25
db.users.find({ age: { $gt: 25 } });
Reviewed by Tesey
Written by
Tesey
Full-stack .NET developer | JS\TS & React frontend | RazorConsole collaborator
Screenshots
Pros & Cons
Pros of MongoDB
- Free / open source
Cons of MongoDB
- Eventual consistency



