Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

cli-loader

syaning213MIT1.1.1

cli loader

loader, loading, spinner, cli-loader, cli-loading, cli-spinner

readme

cli-loader

Install

npm install cli-loader [--save|--save-dev]

Example

var loader = require('cli-loader')();

loader.start();

setTimeout(function() {
    loader.stop();
}, 3000);

Styled loader

var loader = require('cli-loader')(opts);

Where opts can be a string or a object with frames(an array of strings) and interval(a number) property.

There are 4 built-in styled loaders:

  • `basic'(defualt)
  • basic-reverse
  • stack
  • arrow

License

MIT