Best of Node.jsMay 2021

  1. 1
    Article
    Avatar of itnextITNEXT·5y

    Projen: NodeJS project boilerplating

    Projen is a new generation of project generators. It's like Terraform for continuous projects boilerplating. You specify your required state and it generates the project files for you. There are many more options available (batteries included) starting from a simple generic application to the k8s typescript project.

  2. 2
    Article
    Avatar of hashnodeHashnode·5y

    Synchronous vs Asynchronous in Node.js

    Most functions in the Node.js modules are asynchronous in nature that is to say they are asynchronous by default. Synchronous code also called blocking halts the program until the operation is complete. Asynchronous code also known as non-blocking continues executing the program and doesn't wait for the operation to be complete. It is a better practice to use asynchronous code as a developer.

  3. 3
    Article
    Avatar of dzDZone·5y

    Deno vs. Node: A Detailed Comparison

    Deno is a safe TypeScript run-time on Chrome V8. It had been initially written in Go and now has been revamped in Rust to remain far away from potential garbage collector issues. It executes the code in a sandbox as opposed to Node so by default our program does not have access to the file system, network or environment.

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

    Micro Frontends with Podium

    How to build micro frontends in React, Vue.js, and Web Components using Podium. Podium is a framework for composing micro frontend on the server-side. It is implemented in JavaScript and runs on Node.js. The goal is creating something suitable for an organisation with multiple autonomous teams, both vertical and horizontal.

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

    Managing Loading Status for React is Much Easier with Loadio

    The loadio package is a simple to use tool that allows you to manage status information with Promises. It also generates a percentage of information according to the number of tasks. By wrapping Promise methods or else by adding them directly, we have made it easy to show the loading status with percentage information.

  6. 6
    Article
    Avatar of hashnodeHashnode·5y

    Node.js Development Setup

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

    PDF Generation in Node.js

    Puppeteer is a Node library that provides a high-level API to control Chrome or Chromium over the DevTools Protocol. Using a puppeteer you can render the document and then generate PDF File from it. PDF make is a lightweight pure javascript library used to generate pdf.

  8. 8
    Article
    Avatar of devdojoDevDojo·5y

    Node JS vs Spring Boot

    Node.js and Spring Boot are server-side technologies that are instrumental in efficiently powering the business. In this article, we will see a detailed comparison between the two technologies. Your could expect Spring Boot and Node JS questions often in the interviews. Find the full list of questions on InterviewBit.