Best of MongoDBJuly 2022

  1. 1
    Article
    Avatar of systemweaknessSystem Weakness·4y

    Dockerize a MERN Stack app for Production with Security in Mind (Part II)

    This post is the 2nd part of a two part series that covers how to make a MERN stack application production-ready with security in mind. The first part of this series was more of a theoretical post to grasp the basic concepts of what we want to achieve.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Build a Full-Stack Authentication App With React, Express, MongoDB, Heroku, and Netlify

    This tutorial assumes that you already know the basics of: Nodejs and Express. We'll begin with setting up a database using MongoDB, then we'll create endpoints (login and register), and finish by hosting the endpoints on Heroku. By the end of this tutorial, you will have learned how to use tools such as Nodejs, Express, React, Mongo DB, Heroku, Netlify.

  3. 3
    Article
    Avatar of itnextITNEXT·4y

    Repository Patterns: Databases Made Easy

    The repository is the translator layer. You simply ask your repository to create an item to the datastore and the repository translates that request to SQL or to any other querying language. Your application does not need to know the type of the database or how to interact with it. It just communicates with the repository that translates the generic commands to the language the database understands.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Start Using MongoDB – Database Setup for Beginners

    MongoDB is an increasingly popular open source NoSQL database. It offers high scalability, reliability, and performance even with a huge amount of data. This article covers the basics that you need to know to get started with MongoDB and how to use it properly.