Best of Node.jsDecember 2020

  1. 1
    Article
    Avatar of redstRed Stapler·5y

    Thanos.js Tutorial – Restore Balance to your Project

    Node.js app is actually disintegrate your project at the snap command. Let’s see how it works! Installation If you search google for Thanos.js there are 2 versions. The first one is on node.js and the other is apparently just a parody site.

  2. 2
    Article
    Avatar of hashnodeHashnode·5y

    🚀 Top 33 JavaScript Projects on GitHub (December 2020)

    GitHub snapshot of 33 most starred open-sourced JavaScript repositories on GitHub as of December 10th, 2020. 2020 is coming to its end, and we may do another snapshot. You may compare it to the snapshot from 2018. You can also query the GitHub to fetch the latest results.

  3. 3
    Article
    Avatar of swlhThe Startup·5y

    Build a Chat Room With Node.js and Socket.io

    socket.io is a library that enables real-time, duplex communication between client and the server. It contains Websocket which is a protocol that provides a full-duplex and low-latency channel between the server and the browser via socket.io. There will be a socket.emit event which will be listened by both client and server.

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

    How to Verify Users in Express.js

    This article is a tutorial on user verification in ExpressJS. It is a continuation of my Express web development series. I will be building on top of the concepts discussed in my previous article. The setup and required packages are specified in that article but you will be able to see what packages are used in the code examples.

  5. 5
    Article
    Avatar of logrocketLogRocket·5y

    Why is Go overtaking Node.js?

    Go is able to solve a lot of problems ranging from system, big data, machine learning, video editing and audio. Go has the same performance as C because it actually compiles to machine code and doesn’t need a virtual machine or interpreter. Node.js has a weakness that makes it less scalable on the single-threaded side.

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

    How To Do Multithreading With Node.js

    Node.js is capable of doing multithreading with the release of version 13 onwards. With the help of an example, here demonstrated how to create another thread for processing an operation. The worker thread module overcomes that weakness by isolating the function, which takes high CPU usage into a separate thread.

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

    5 Important Reasons To Choose Node.js For Your Microservices