- Event loop visualization
- Sequential vs concurrent vs parallel
- Call Stack, Callback Queue, and Event Loop
- Non-blocking I/O and how Node uses it, in friendly terms: blocking vs async IO, CPU vs IO
- Testing For Async Functions In NodeJS
- Асинхронное программирование в JS и Node.js
- Параллельное программирование в JS и Node.js
- Non blocking event loop technique
- Event loop animated
- Next tick and promises queues
- Event loop phases
- Promise execution tracking
- How event loop workds
- The Node.js Event Loop, Timers, and process.nextTick()
- Don't Block the Event Loop (or the Worker Pool)
- Benchmarking Node.js Worker Threads
- Inter-processing communication
- Parallel programming
git clone https://github.com/Lormida/Asynchronous_travel_around_Node.js.git \
&& cd Asynchronous_travel_around_Node.js \
&& pnpm i
- Put needed code (function or module) in
main.ts
file - Then either use:
npm run build:watch && npm run start
or
npm run dev