Best of Node.jsJuly 2021

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

    Node.js Best Practices for Beginners and Experts Alike

    Node.js Best Practices for Beginners and Experts Alike. Rencybeth shares some useful Node.JS best practices to help all kinds of developers to create an efficient and most sustainable application. To write code for cross-platforms, but Linux, you should meet the exact requirement statements.

  2. 2
    Article
    Avatar of devtoDEV·5y

    I created 8 free dashboard templates built with Tailwind for React, Next, Vue and Nuxt.

    Salvia-kit is an open source dashboard tool for React, Next.js, Vue.js and Nuxt. It is fully customizable and without external dependencies. You can export it and integrate it in your project. There are 33 repositories and each dashboard has 4 templates.

  3. 3
    Article
    Avatar of devtoDEV·5y

    Optimize Node.js performance with clustering

    The Node.js cluster module acts as a load balancer to distribute the load to the child processes running simultaneously on a shared port. The master process listens to a socket and sends the work to interested workers. The workers then process the incoming requests. This is the power of the cluster module where workers share the load.

  4. 4
    Article
    Avatar of changelogChangelog·5y

    solidjs/solid: A declarative, efficient, and flexible JavaScript library for building user interfaces.

    Solid is a declarative JavaScript library for creating user interfaces. It does not use a Virtual DOM. Instead it opts to compile its templates down to real DOM nodes and wrap reactions. This way when your state updates only the code that depends on it runs. Solid's compiler will only include parts of the library you use.

  5. 5
    Article
    Avatar of hashnodeHashnode·5y

    18 NPM Best and Underrated packages you should use in your projects

    NPM bundles save us huge loads of time and exertion. Treat these NPM bundles as efficient devices and wizardry pixie partners. At whatever point you need to take care of an issue with code, the odds are there's a bundle custom-made to your requirements. Here's a rundown of bundles I figure each Node.js designer should know.

  6. 6
    Article
    Avatar of devtoDEV·5y

    Mern App ( Node.js / React / Redux / Ant Design ) Crud & Auth

    Starter Antd Admin (Crud & auth) App based on Mern Stack. App built for DigitalOcean MongoDB Hackathon. Based on mern stack (Express.js / MongoDb / React / Redux / AntD) with generic crud and auth , admin management.

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

    Skeleton for Node.js Apps written in TypeScript (with Setup Instructions for ESLint, Prettier, and Husky)

    Skeleton for Node.js Apps written in TypeScript (with Setup Instructions for ESLint, Prettier, and Husky) Santosh Shinde Follows SOLID Principles Based on TypeScript Syntax Simple Environment Configuration Easily add a new feature Integrated Winston Logger Production-Ready Skeleton Follows Production Ready Best Practices: Security Project Structure Project folder Structure Project Source code Structure

  8. 8
    Article
    Avatar of freecodecampfreeCodeCamp·5y

    How to Scrape Websites with Node.js and Cheerio

    .com. How to Scrape Websites with Node.js and Cheerio. Joseph Mawa explains how to scrape websites with the two tools. He says it's easier than it looks and it's faster than you think. He also shows you how to use Cheerios to scrape sites with the same code.

  9. 9
    Article
    Avatar of colkgirlCode Like A Girl·5y

    The Butterfly Effect Mindset

    The Butterfly Effect Mindset is the counteraction of connecting the dots backward and making it a useful catalyst for your life left to be lived fully. Being young and inexperienced is actually an advantageous power that should be championed and leveraged to the fullest. You can create advantageous starting conditions that serve as the impetus for abundant possibilities in your future.

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

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