Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/platformatic/the-multithreading-workshop


https://github.com/platformatic/the-multithreading-workshop

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# The Multithreading Workshop

Node.js's single-threaded nature is a common misconception.

While this held true in the past, today, Node.js effectively utilizes an event loop and asynchronous programming techniques to handle concurrent requests efficiently.

However, it's very easy to do multithreading the wrong way. In this workshop, we'll explore best practices and tools to supercharge Node.js multithreading.

## Getting started

```sh
git clone https://github.com/platformatic/the-multithreading-workshop.git
cd the-multithreading-workshop
npm install
```