Best of Node.jsAugust 2021

  1. 1
    Article
    Avatar of devtoDEV·5y

    Skills required to be a full stack developer: a checklist

    The skills list required to be a full stack developer is long and it can be hard to know exactly what skills you need. The often shared online resource for this kind of thing is roadmap.sh but, while it is extensive, I think the amount covered here is too much to be helpful to new developers. I have my own list, it’s a bare minimum required skills list and it looks like this:

  2. 2
    Article
    Avatar of devgeniusDev Genius·5y

    Microsoft is Finally Ditching Electron

    Microsoft Teams will be moving to their own Edge Webview2 Rendering Engine ditching Electron for seeking performance gains. Teams would consume 2x less memory as a result of the transition. It would be called Teams 2.0 and might ship with Windows 11 in late 2022. This may be a pivotal milestone in the ever-changing landscape of cross-platform frameworks.

  3. 3
    Article
    Avatar of phProduct Hunt·5y

    AdonisJS - A fully featured web framework for Nodejs

    AdonisJS is a backend framework that helps you create data-driven web applications. Using AdonisJS, you can handle the HTTP requests, query the database, authenticate users, upload files, and more. Embed Collect is a weekly, free e-mail newsletter from CNN.com.

  4. 4
    Article
    Avatar of devtoDEV·5y

    Basic Concepts of Node.js

    Node.js is an open-source JavaScript based platform for server-side programming built on Chrome's V8 JavaScript engine. It’s event driven architecture is perfect for applications with intense I/O (Inputs and Outputs), making it serve more clients with less hardware, which means more performance with less costs.

  5. 5
    Article
    Avatar of bitBits and Pieces·5y

    JavaScript Require vs. Import

    Require and import are used to refer to JavaScript dependencies. In this article, we will discuss the usage of require and import and answer some of these common questions. We will first discuss the different types of JavaScript modules available. Then we will compare and contrast them with a deeper level of contrast.

  6. 6
    Article
    Avatar of sitepenSitePen·5y

    Deno: Desktop JS Evolved

    Deno is a system for executing JavaScript code in various environments ( desktop, command-line, server, etc.) Unlike Node.js, Deno restricts a script’s capabilities by default. Without explicit permission, a Deno script can not open network connections or access the environment.

  7. 7
    Article
    Avatar of dzDZone·5y

    Creating a Secure REST API in Node.js

    The hype of Application programming interfaces (APIs) is universal. They enable software to interact with internal and external parts of the software. These allow other developers to quickly combine features such as social media logins, credit card debts, and performance tracking. The standard they practice for this is designated REpresentational State Transfer.

  8. 8
    Article
    Avatar of devtoDEV·5y

    Nestjs🐺⚡ | The framework of Nodejs (Part-1)

    Nestjs is a server-side framework often confused with the term "Server-Side Angular" It centralizes all the needed technologies/tools to build perfect, reliable & durable enterprise servers using Nodejs. It provides/supports (through packages): http-server (express/fastify) GraphQL server websocket server (socket.io/ws) database orm (sequelize/mongoose/typeorm/knex/prism) request body validation using class-validator caching.

  9. 9
    Article
    Avatar of hashnodeHashnode·5y

    Building a Restful CRUD API with Node JS, Express, and MongoDB

    An API is a software interface that enables two apps to communicate with one another. 60% of eBay transactions are via their API. We’ll be building a RESTful CRUD (Create, Retrieve, Update, Delete) API with Node.js, Express, and MongoDB. Create a new folder named nodejs-api and open it in any Code Editor.

  10. 10
    Article
    Avatar of dzDZone·5y

    Node.js for Real-Time Application Development

    Node.js has left a lasting impression on the app development realm with its emphatic features and other advantages. With the real-time application, the users can interact with it easily, be it a mobile app, desktop app, or web app. Real-time apps have the power to enhance the overall user experience.

  11. 11
    Article
    Avatar of bitBits and Pieces·5y

    NodeJS Performance Optimization with Clustering

    NodeJS runs in a single thread by default. Cluster module creates several child processes that operate parallelly sharing the same server port. Advantages: The use of all the available cores for application execution improves scalability. Disadvantages: Session management isn’t possible; instead, a developer must handle the alternatives, which adds to the complexity.

  12. 12
    Article
    Avatar of devtoDEV·5y

    Fullstack (Nodejs + Reactjs) interview experience at Nutanix

    I had applied for the MTS-3 Fullstack – SAAS (Nodejs + Reactjs) on Nutanix’s career section and got the shortlisting email on 21’st April 2021. Visit learnersbucket.com If you are preparing for your JavaScript interview. You will find DSA, System Design and JavaScript Questions.

  13. 13
    Article
    Avatar of asayerasayer·5y

    Building Your Own Blog with Nuxt Content and Tailwind

  14. 14
    Article
    Avatar of quick_codeQuick Code·5y

    Node.js Vs JAVA Vs Python- How to Choose the Best Backend Tech Stack?

    Python, Java, and Node.js are popular backend choices. They empower globally successful brands like Google, Wikipedia, Netflix, LinkedIn, even NASA. All three enjoy a prominent market status, millions of developers, and billions worth of project development. But, there is no absolute answer, rather a circumstantial choice.

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

    Core Concepts of Node.js in Just 6 Minutes

    Core Concepts of Node.js in Just 6 Minutes by Bytecode Pandit. Nodes.js is becoming the first choice for developing the server environment. It is nothing but just running JavaScript code on the server-side. Front-end developers don’t need to learn a new language to pursue their career as full-stack.

  16. 16
    Article
    Avatar of devtoDEV·5y

    NodeJS + ESLint + Prettier - Simplest setup ever

    Yarn is a great way to get started with lint. You'll need a .eslintrc.js file and a lintignore file. The lint cli used npm to install something, so remove that file and run yarn to make things right again.

  17. 17
    Article
    Avatar of bitBits and Pieces·5y

    Secret Behind JavaScript Performance: V8 & Hidden Classes

    V8 is an open-source JavaScript engine introduced by Google. It is written in C++ and supports Google Chrome, Chromium web browsers, and NodeJS. The most significant difference between V8 and other engines is its Just In Time (JIT) compiler.