Best of Node.jsJune 2021

  1. 1
    Article
    Avatar of thnThe Hacker News·5y

    New Chrome 0-Day Bug Under Active Attacks – Update Your Browser ASAP!

    Chrome users can update to the latest version (91.0.4472.101) by heading to Settings > Help > About Google Chrome to mitigate the risk associated with the flaw. The flaw stems from a type confusion issue in its V8 open-source and JavaScript engine. Google has addressed a total of seven zero-days in Chrome since the start of the year.

  2. 2
    Article
    Avatar of hackernoonHacker Noon·5y

    Node.js Vs Flask: Which One Has A Better Performance

    Radley Sidwell-Lewis has been using Node.js for almost all of the backend servers he has built using Express.js. The first language he learned wasn’t JavaScript, it was Python. Python appears to have a sexier reputation among non-engineers, for the most part.

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

    Why Choose Node.js for Your Next Web Application Development Project

    Node.js is an ideal choice for companies looking to commit to a real-time application and runtime environment across platforms. Developers can build fast and flexible web applications that can handle multiple parallel connections. Using Node.Js for a proxy server is also a great way to use it to stream information from multiple sources.

  4. 4
    Article
    Avatar of gcgitconnected·5y

    Lodash: Do What JavaScript Can’t

    Lodash is a superset of Underscore that follows the functional programming paradigm. Lodash makes JavaScript easier by taking the hassle out of working with arrays, numbers, objects, and strings. While JS is an extremely flexible language, libraries like Lodash allow a developer to encapsulate several lines of code into one simple line.

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

    Create API Endpoints for REST API in Node.js

    How to Make REST API with Node.js, Express, and MongoDB. Create API Endpoints for REST API in Node.JS Part 2. Making API endpoints to post or retrieve data. Making the controller to handle all the logic behind the routes. How to do CRUD (Create, Read, Update, Delete) operation on data stored on MongoDB Atlas database.

  6. 6
    Article
    Avatar of medium_jsMedium·5y

    Managing Javascript Projects With Monorepo

    A monorepo (mono repository) is a single repository that stores all of your code and assets for every project. Pros: Single lint, build, test and release process. Cons: Huge codebase. Excessively large repos. Managing Javascript Projects With Monorepo.

  7. 7
    Article
    Avatar of taiTowards AI·5y

    A Primer on Node.js

    A Primer on Node.js An article that makes you sufficient enough to create & play with the node-based web server, do CRUD operations, and more. Most of the sections contain the necessary code blocks to follow up, if you want to execute the codes as well while you go through, you can clone the repo. Contains all the codes and dependencies related to this article.

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

    REST API in Express.js

    RESTful API stands for the standard web service interface used by the applications to communicate with each other. It is scalable, stateless, cacheable, and has a uniform interface. In this tutorial, we will build a REST API in a Node.js environment running on an Express.js server.

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

    The Easiest Way to Build a Web Scraper Using JavaScript and Node.js

    The Easiest Way to Build a Web Scraper Using JavaScript and Node.js Dan Suciu shares his tips on building a web scraper using NodeJS. In the following section of this article, I will help you write your own web scraper application using Nodejs.