Best of MongoDBJuly 2021

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

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

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