Table of Contents

About

MongoDB is an open-source NoSQL document database that uses a JSON-like schema instead of traditional table-based relational data.

A key goal of MongoDB is to bridge the gap between:

  • key/value stores (which are fast and highly scalable)
  • and traditional RDBMS systems (which are deep in functionality).

Test

https://github.com/fakemongo/fongo

Cloud

https://www.mongodb.com/cloud/atlas

Docker

docker run -itd --name mongo -p 27017:27017  bitnami/mongodb:latest

then login with the connection string

mongodb://localhost:27017