JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q33542F
  • License ISC

Asynchronous multi-step processing

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