Learning NodeJS Part 1: Understanding the Essentials

By DEV Community - 2021-01-05

Description

In late fall of 2020, I went on a mission to better understand Node. I wanted to improve the way I us...

Summary

  • In late fall of 2020, I went on a mission to better understand Node.
  • This functionality is facilitated through the use of callbacks.
  • JS executes all operations on a single thread, but using a few smart data structures, it gives us the illusion of multi-threading.
  • Ajax requests would be treated the same way - put into the webapi section, because the code for a request does not live in the JS runtime, it lives in the browser webapi.

 

Topics

  1. Backend (0.15)
  2. Frontend (0.15)
  3. Database (0.08)

Similar Articles

PHP vs Node.js

By DEV Community - 2020-12-27

Web development is constantly changing. In order to stay relevant, programmers must analyze trends an... Tagged with programming, php, node.

5 ways to make HTTP requests in Node.js

By LogRocket Blog - 2021-02-04

Make HTTP requests in Node.js using the native module as well as npm packages like Axios, Got, SuperAgent, and node-fetch.

Worker Threads in Node.js

By DEV Community - 2020-12-27

A look at worker threads in nodejs and shared memory. Tagged with node, programming, javascript, multithreading.

nodejs/getting-started

By GitHub - 2020-10-21

Getting started in Node.js! Contribute to nodejs/getting-started development by creating an account on GitHub.

Learning To Use Docker

By DEV Community - 2020-12-27

This is the second post in my series called "Demystifying Docker". While having read the first post i... Tagged with beginners, tutorial, devops, docker.