High-performance Node.js concurrency with native "events" package

added by JavaScript Kicks
10/16/2019 8:55:17 AM

900 Views

Naturally, JavaScript considered as a single-threaded programming language with Event Loop implementation as the main driving engine. However, it's not fully like that for Node.js, because they actually implemented Thread Pooling API based on libuv the library, which is a core library for Node.js to access other OS API like networking, file system, etc...


0 comments