Best of MongoDBAugust 2021

  1. 1
    Article
    Avatar of faunFaun·5y

    MongoDB — Complete Guide

    MongoDB is a cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with optional schemas. MongoDB is built for modern application developers and for the cloud era. NoSQL is used to store structured as well as unstructured data.

  2. 2
    Article
    Avatar of hnHacker News·5y

    How Discord Stores Billions of Messages

    Discord was built in just under two months in early 2015. The messages were stored in a MongoDB collection with a single compound index. The data and the index could no longer fit in RAM and latencies started to become unpredictable. It was time to migrate to a database more suited to the task.

  3. 3
    Article
    Avatar of hashnodeHashnode·5y

    Building a Restful CRUD API with Node JS, Express, and MongoDB

    An API is a software interface that enables two apps to communicate with one another. 60% of eBay transactions are via their API. We’ll be building a RESTful CRUD (Create, Retrieve, Update, Delete) API with Node.js, Express, and MongoDB. Create a new folder named nodejs-api and open it in any Code Editor.

  4. 4
    Article
    Avatar of itnextITNEXT·5y

    Building a real-time Todo app with Drayman, MongoDB and Tailwind CSS

    In this guide we will build a real-time Todo app with Drayman, MongoDB and Tailwind CSS. We will use Change Stream functionality of MongoDB to make our Todo list work in real time. This way if something gets changed in the database, our application will reflect these changes.