Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/platformatic/the-multithreading-workshop
https://github.com/platformatic/the-multithreading-workshop
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/platformatic/the-multithreading-workshop
- Owner: platformatic
- Created: 2024-10-15T14:38:27.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-18T11:30:09.000Z (2 months ago)
- Last Synced: 2024-10-19T14:48:53.526Z (2 months ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```