https://github.com/platformatic/the-multithreading-workshop
https://github.com/platformatic/the-multithreading-workshop
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/platformatic/the-multithreading-workshop
- Owner: platformatic
- Created: 2024-10-15T14:38:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-11T20:52:58.000Z (over 1 year ago)
- Last Synced: 2024-12-29T23:05:09.030Z (about 1 year ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 9
- Watchers: 4
- Forks: 4
- 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
```