Package Exports
- @js-bits/process
Readme
Asynchronous multi-step processing
Allows you to organize complex processing operations as a set of simpler subsequent steps. Includes Executor capabilities in case you need some statistics
Installation
Install with npm:
npm install @js-bits/process
Install with yarn:
yarn add @js-bits/process
Import where you need it:
import Process from '@js-bits/process';
or require for CommonJS:
const Process = require('@js-bits/process');
How to use
[TBD]
A process is a one time operation. You have to create a new instance each tim you need to run the process