1.0.0 • Published 9 months ago

thweads v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Installation

npm install --save thweads

Usage

const Thweads = require('thweads');
const thweads = new Thweads({ thweads: 4 });
//or Thweads() to automatically set thweads

thweads.addAction(async () => {
    const workerData = new Array(10000000).fill(1);
    workerData.reduce(async (sum, num) => sum + num, 0);
});

thweads.startActions();
© Copyright 2023 dubfib - MIT License