Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 367 Bytes

napajs.md

File metadata and controls

7 lines (5 loc) · 367 Bytes

Napa JS

  • IO-bound tasks are event-driven.
  • Performing the CPU-intensive synchronous tasks in worker threads and delegating only the I/O-intensive asynchronous tasks to the event loop can dramatically improve the performance of our Node.js applications.

References