Best of Node.jsJanuary 2022

  1. 1
    Article
    Avatar of logrocketLogRocket·4y

    Build a video streaming server with Node.js

    In this article, we’ll create our own video streaming server using Node.js. To follow along with this tutorial step-by-step, you can check out the GitHub repo. We’re creating a file system and returning it back to the client. Our server will allow us to select timeframes throughout the video and decide how big of a payload to send back.

  2. 2
    Article
    Avatar of logrocketLogRocket·4y

    Creating dashboards in React with React Dashboard

    The Flatologic dashboard template is built with React, Bootstrap, React Router, Redux, and GraphQL. It comes with a React frontend and a Node.js backend. This tutorial will cover how to create a dashboard in three easy steps. We will connect it to an SQL database with MAMP so you have some local data.

  3. 3
    Article
    Avatar of gcgitconnected·4y

    FastAPI vs. Express.js vs. Flask vs. Nest.js Benchmark

    Travis Luong wanted to verify FastAPI’s claims of having performance on par with Node.js. For this, I used wrk, an HTTP benchmarking tool. I also wanted to test it with a call to an endpoint that makes a call. to a Postgres database in order to simulate a more ‘realistic’ scenario.

  4. 4
    Article
    Avatar of phProduct Hunt·4y

    Candymail - Email automations for Nodejs

  5. 5
    Article
    Avatar of hashnodeHashnode·4y

    How to build a CLI using NodeJS 💻

    The command line interface (CLI) is one of the most basic and powerful applications ever created by mankind. We are going to be building a CLI which would generate starter templates with TailwindCSS, and Prettier pre-installed. We will be using a NodeJS framework called Tailwind CSS.

  6. 6
    Article
    Avatar of logrocketLogRocket·4y

    CI/CD in Node.js with GitHub Actions

    Continuous integration/continuous deployment is a software engineering practice that helps teams to collaborate better. With GitHub Actions, you can easily integrate this into your GitHub project without using an external platform. In this tutorial, we see how you can use GitHub Actions to set up a CI/CD pipeline to your project.

  7. 7
    Article
    Avatar of medium_jsMedium·4y

    Clean Node.js Architecture —With NestJS and TypeScript

    Clean Node.js Architecture —With NestJS and TypeScript “Your architectures should tell readers about the system, not about the frameworks you used in your system” — Robert C. Martin. This a r chitecture attempts to integrate some of the leading modern architecture, like hexagonal architecture, onion architecture, and screaming architecture.

  8. 8
    Article
    Avatar of javacodegeeksJava Code Geeks·4y

    Why Node.js is Great for Backend Dev?

    The USA alone has over 41,000 websites created using Node.js. The technology has been adopted by several renowned companies like Amazon, Linkedin, PayPal, Netflix, and Reddit. Most developers use this framework for its speed, scalability, and thriving community. It lets a JavaScript developer work on both the frontend and backend reducing the cost of hiring developers.

  9. 9
    Article
    Avatar of dzDZone·4y

    Node.js vs Java: Which is Best for Your Business in 2022

    Node.js and Java, both technologies are powerful for the back-end but which one is the best? Which is the most relevant for web development? All of your questions will get their answers in this article.Node.js is a platform built on Chrome's JavaScript runtime for easily building fast and scalable network applications. Java is open-source, secure, highly stable, and flexible.

  10. 10
    Article
    Avatar of dzDZone·4y

    Why Choose Node.js for Backend Web Development?

    Node.js is an open-source JavaScript engine, as it has been developed on V8. NestJS is a superset of programming languages of JavaScript, which is strongly categorized as TypeScript. Electron facilitates desktop apps development by authorizing programmers to compose these applications in web languages like HTML5 and CSS.

  11. 11
    Article
    Avatar of logrocketLogRocket·4y

    Organizing your Express.js project structure for better productivity

    Express is the most popular Node.js framework for web development. It offers simplicity, efficiency, and minimalism without the baggage or opinions. A good structure is needed when working with Express, especially in a team of software engineers. In this post, we will learn how to organize an Express project to be used by a team.

  12. 12
    Article
    Avatar of gcgitconnected·4y

    Nodejs Event Loop Architecture

    The Nodejs Event Loop is where all the application codes inside a callback function are executed. The event loop receives an event each time something happens and will call the necessary callbacks. In the second stage of the event loop, Nodejs checks if there are any pending timers or I/O tasks that are still running in the background, and if none Nodejs will exit.

  13. 13
    Article
    Avatar of hashnodeHashnode·4y

    How to build a REST API using NodeJS

    In this blog post we are doing to build a REST API which would serve as a source of motivation for developers using NodeJS and MongoDB. API stands for "Application Programming Interface" which is a tool which allows two applications to talk to each other. These type of APIs follow the client-server model, where one program send a request and the other response with some data.