Node.js Complete Study Notes (Exam Version)

Updated: 2026-03-24

1) Read This First

This file is designed for Notion and exam preparation. It focuses on:

Important note: Node.js has a very large API surface. This guide covers the most important and commonly tested APIs in depth.


2) Node.js in One Picture

Node.js is a JavaScript runtime built on V8.

Execution flow (simplified):

  1. JS runs on call stack.
  2. Async I/O is delegated to system/libuv.