https://github.com/keiya01/progress-loader
This package provide simple and customizable loader.
https://github.com/keiya01/progress-loader
Last synced: 4 months ago
JSON representation
This package provide simple and customizable loader.
- Host: GitHub
- URL: https://github.com/keiya01/progress-loader
- Owner: keiya01
- Created: 2019-06-07T08:01:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T23:36:44.000Z (over 2 years ago)
- Last Synced: 2025-03-18T12:19:15.354Z (4 months ago)
- Language: TypeScript
- Size: 758 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# progress-loader
- This package is for easy implementation of progress loaders.
- This package is customizable and can be implemented as you wish.
# Installation
- `yarn add progress-loader` or `npm i progress-loader`# Usage
```
const loader = new Loader("=");
loader.printProgressBar(30, "word");
// => word [========== ] 30%
```# Examples
- [simple_loader](https://github.com/keiya01/progress-loader/blob/master/examples/simple.js)# Actually used project
- [mul](https://github.com/keiya01/mul)