Best of MongoDB2021

  1. 1
    Article
    Avatar of devdojoDevDojo·5y

    Free 100+ MERN / MEAN Stack resources

    I have gathered all the resources that you will require to become a MERN or MEAN stack developer. All these resources will include Articles, Videos, Course, Websites, Tutorials, Books etc. And everything is FREE. You should know the basics of HTML, CSS AND JS.

  2. 2
    Article
    Avatar of changelogChangelog·5y

    A list of 70+ open source clones of popular sites

    100+ open-source clones and alternatives of popular sites like Airbnb, Amazon, Instagram, Netflix, Tiktok, Spotify, Whatsapp, Youtube, etc. List contains source code, tutorials, demo links, tech stack, and GitHub stars count. Great for learning purpose!

  3. 3
    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.

  4. 4
    Article
    Avatar of freecodecampfreeCodeCamp·5y

    Create a MERN Stack App with a Serverless Backend

    MERN Stack App with a Serverless Backend. Create a MERN stack app with a serverless backend. Use the MERN App Manager to help you create your own Stack App. The MERN app manager can also be used to test your Stack App's functionality.

  5. 5
    Article
    Avatar of jsPlainEnglishJavaScript in Plain English·5y

    Build an API in Node.js using AWS, API Gateway, MongoDB, and Serverless

    This tutorial shows you how to build a secure REST API for a Notetaking react-redux application using MongoDB database as a service. We will follow a Serverless approach using AWS Lambda, API Gateway, and the Serverless framework. In Part 1, we are going to build the backend, and to go through this tutorial, you will need the following.

  6. 6
    Article
    Avatar of changelogChangelog·5y

    MangoDB-io/MangoDB: A truly Open Source MongoDB alternative

    MangoDB is an open-source proxy, which converts MongoDB wire protocol queries to SQL. It uses Postgres as a database engine. MangoDB will be compatible with MongoDB drivers and will work as a drop-in replacement for MongoDB in many cases. It is in a very early stage and welcomes all contributors.

  7. 7
    Article
    Avatar of geekcultureGeek Culture·5y

    Should I Use MongoDB or PostgreSQL?

    MongoDB and Postgres are two of the most popular databases. We are going to cover their key features, functionality, performance, and their use cases. MongoDB is a schema-free document-oriented store. Postgres is ideal for transactional workflows that make it reliable in production.

  8. 8
    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.

  9. 9
    Article
    Avatar of freecodecampfreeCodeCamp·5y

    Learn the FARM Stack! (FastAPI, React, MongoDB)

    Learn the FARM Stack! (FastAPI, React, MongoDB) Beau Carnes is the co-founder of FARM, an open source software company. Visit FARM on Facebook, Twitter, and Instagram. For more information, visit FARM's official website.

  10. 10
    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.

  11. 11
    Article
    Avatar of devtoDEV·5y

    Kubernetes Crash Course for Absolute Beginners 👏

    Kubernetes is the most popular platform for container orchestration for automating deployment, scaling, and management of containerized applications. In this crash course you will learn everything you need to know to get started with Kubernetes in 1 hour. You will learn all the core concepts, its architecture and how Kuber netes works. You'll learn the syntax and contents of K8s configuration file, which is used to create and configure components in a Kuber Netes cluster.

  12. 12
    Article
    Avatar of jsPlainEnglishJavaScript in Plain English·5y

    How to Create a YouTube Downloader with Node.js and React

    In this tutorial, we will be building a YouTube downloader with the backend implemented in Express and the frontend in React. The basic flow of the app: User will provide a YouTube video link The backend server will push this video link in the queue to process the download. When the job is popped from the queue for processing, the backend emits the event for the client.

  13. 13
    Article
    Avatar of devdojoDevDojo·5y

    Build Crud API with Node.js, Express, and MongoDB

    In this blog, we’ll be building a CRUD App with Node.js, Express, and MongoDB. CRUD is an acronym for Create, Read, Update and Delete. We will use Mongoose for interacting with the MongoDB instance. We'll heavily use ES6 features like let, const, arrow functions, promises.

  14. 14
    Article
    Avatar of logrocketLogRocket·5y

    Building a URL shortener with Node.js

    URL shorteners like Bitly and Cuttly are incredibly popular. In this article, we are going to create a similar tool by building an API service that shortens the URLs provided to it. For each URL passed into our API, we will generate a unique ID and create a short URL with it. Then, the long URL, short URL, and unique ID will be stored in the database.

  15. 15
    Article
    Avatar of jsPlainEnglishJavaScript in Plain English·5y

    Creating a simple REST API using Express.js + MongoDB

    This tutorial will show you how to develop a simple REST API using Express.js and MongoDB. At the end, the REST API will be used in React Application from my previous article: Basic React Components and Props using API for showing lots of cats. The API can be used to retrieve cat data from a database.

  16. 16
    Article
    Avatar of devtoDEV·5y

    Build an API using Node, Express, MongoDB, and Docker

    In this tutorial, we'll be using TypeScript and Docker to build a Menu Restaurant API app from scratch with Node, Express, and MongoDB. The Docker part is optional.Basically, we should be able to:retrieve all menus.retrieve one menu.create a menu.update a menu (or delete it)

  17. 17
    Article
    Avatar of dzDZone·5y

    MongoDB Vs. MySQL: When to Use?

  18. 18
    Article
    Avatar of hashnodeHashnode·5y

    Serverless is (sort of) stupid

  19. 19
    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.