nodejs-threads
v1.1.0
Published
A very simple functiobn based implementation of node.js worker threads
Downloads
17
Readme
A very simple function based implementation of node.js worker threads
🏠 Homepage
✨ Demo
Install
npm install nodejs-threads
Basic Usage
// No need to create a separate file for the worker thread.
const { runInWorker } = require('nodejs-threads');
// OR
import { runInWorker } from 'nodejs-threads';
// Assume this is the CPU intensive task
const { calculateScore } = './users.service';
async function main() {
try {
// Spawn a worker thread like this:
// Does not block the main thread
const result = await runInWorker('./users.service', 'calculateScore', { name: 'Karan' });
console.log('[PRIMARY] : WORKER EXECUTED WITH ...', result);
} catch (error) {
console.log('[PRIMARY] : ERROR', error);
}
}
API Guide
For complete usage guide, refer our API.md file
Run tests
npm run test
Author
👤 Karan Raina [email protected]
- Website: https://karanraina.tech/
- Twitter: @karankraina
- Github: @karankraina
- LinkedIn: @karankraina
🤝 Contributing
Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.
Show your support
Give a ⭐️ if this project helped you!
📝 License
Copyright © 2021 Karan Raina [email protected]. This project is MIT licensed.
This README was generated with ❤️ by readme-md-generator