🍃 Atlas — The Global Cloud Database Platform

Build with the
#1 developer database.

MongoDB is a document database that gives you the flexibility, performance, and scalability modern applications demand. From startup to enterprise scale.

JavaScript / Node.js Driver
// Connect to MongoDB Atlas
const client = new MongoClient('mongodb+srv://cluster.example.mongodb.net');

// Find users who signed up in the last 30 days
const recentUsers = await client.db('app')
  .collection('users')
  .find({
    createdAt: { $gt: new Date(Date.now() - 30 * 86400000) },
    status: 'active'
  })
  .sort({ createdAt: -1 })
  .limit(50)
  .toArray();

// Returns array of flexible document objects 🚀

The complete developer data platform

More than just a database — a full suite of tools for building data-driven applications at any scale.

📄

Document Model

Flexible schema design that evolves with your application. Store related data together in rich JSON-like documents for natural data modeling.

☁️

MongoDB Atlas

Fully managed cloud database service. Automated backups, global distribution, serverless instances, and enterprise-grade security built in.

🔍

Powerful Querying

Rich query API with aggregation pipeline, full-text search, geospatial queries, and real-time change streams for reactive applications.

Distributed by Design

Built-in sharding and replication for horizontal scaling. Handle millions of operations per second across multiple regions seamlessly.

🔐

Enterprise Security

Field-level encryption, role-based access control, audit logging, VPC peering, and compliance certifications (SOC2, HIPAA, GDPR).

🛠️

Rich Ecosystem

Official drivers for every major language, ORMs like Mongoose and Prisma, integrations with all major frameworks and cloud providers.

Start building with MongoDB.

Free tier includes 512MB storage on shared clusters. No credit card required to get started.

Try MongoDB Atlas Free → Read Documentation