logistic-progressor

3.0.1 • Public • Published

Logistic Progressor

Build Status npm

A utility library to create an infinitely advancing progress bar.

Demo

The library exposes a stream, which emits values starting from 0 and logistically increasing up until 100. The closer the value gets to 100, the smaller jumps it takes to get the next value, thus never actually reaching 100.

Install

npm i logistic-progressor --save

Usage

const Rx = require('rx')
const create = require('logistic-progressor')
var value = false
const input = new Rx.BehaviorSubject(value)
 
create(input).subscribe(x => console.log(x))
 
setInterval(() => {
  value = ! value
  input.onNext(value)
}, 1000)

Readme

Keywords

none

Package Sidebar

Install

npm i logistic-progressor

Weekly Downloads

1

Version

3.0.1

License

ISC

Last publish

Collaborators

  • tusharmathur