Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stefanpenner/pleasant-progress


https://github.com/stefanpenner/pleasant-progress

Last synced: 17 days ago
JSON representation

Awesome Lists containing this project

README

        

pleasant-progress
===================

module for outputing a pleasant progress indicator

Example
=======

```js
var progress = new PleasantProgress();

progress.start('building');

// => building .
// => building ..
// => building ...
// => building .

progress.stop();
```