Best of MongoDBAugust 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    Full Docker Course [FREE]

    The course is a mix of animated theoretic explanations and hands-on demo’s to follow along. You will have a deep understanding of the concepts and a great overall big picture of how Docker is used in the whole software development process. It's a handy way to quickly look something up or refresh your knowledge at work.

  2. 2
    Article
    Avatar of appsignalAppSignal·4y

    Build a CRUD App with Node.js and MongoDB

    MongoDB is an open-source, cross-platform, document-oriented database program. MongoDB’s horizontal, scale-out architecture can support huge volumes of both data and traffic. The application will connect to a MongoDB database and allow users to create, read, update, and delete blog posts. Make a services/BlogService.js file in your project root directory and add the code snippet below.

  3. 3
    Article
    Avatar of hashnodeHashnode·4y

    MongoDB schema design best practices

    MongoDB is a document-oriented NoSQL database that can store large amounts of data in a JSON format. It has a faster execution than RDBMS. This article will help you understand the theoretical core concepts of MongoDB that can be used to improve scalability and performance.

  4. 4
    Article
    Avatar of awstipAWS Tip·4y

    Build a Visual Serverless NodeJS CRUD API with MongoDB (or steal mine)

    The end result of this API will be something like the picture below. Some of these nodes are composites I am using two collections but you can change this logic to only have one. If you’ve added them you can now Save and then Run the application. This may take a minute or two.

  5. 5
    Article
    Avatar of devgeniusDev Genius·4y

    NodeJS Gateway — Part 1: Initial Setup

    NodeJS Gateway is part of a series of how to build a payment gateway or solution using Javascript. The Gateway will be using TypeScript which I believe is an advantage over using just JavaScript to avoid errors that may have sneaked through to the runtime. It all comes to which one you’re well conversant about.