1.0.1 • Published 9 years ago

progger v1.0.1

Weekly downloads
7
License
MIT
Repository
github
Last release
9 years ago

NPM version Dependency Status Downloads

Progger

Colorful CLI progress meter for events of unknown time & magnitude.

For example, this could be useful if you have a series of http requests and you want to indicate activity but you can't display a percent meter because it's impossible to know at what point data will be returned.

Example

var Progger = require('progger');

var p = new Progger({
  speed: 50,
  token: '*',
  color: 'red'
});

p.start();

setTimeout(function() {
  p.stop();
}, 5000);

Methods

var launcher = require('launcher')

start()

Starts a progress ticker in your terminal.

stop()

Stops the progress ticker.

isRunning()

Returns boolean for ticker status

Install

npm install progger

License

Released under the MIT License.

1.0.1

9 years ago

0.1.8

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago