Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/node/TestCli/node_modules/nanospinner/README.md
2022-09-04 12:45:01 +02:00

22 lines
482 B
Markdown

# Nano Spinner
The simplest and tiniest terminal spinner for Node.js
```js
import { createSpinner } from 'nanospinner'
const spinner = createSpinner('Run test').start()
setTimeout(() => {
spinner.success()
}, 1000)
```
- Only **single dependency** (picocolors).
- It **45 times** smaller than `ora`.
- Support both CJS and ESM projects.
- **TypeScript** type declarations included.
## Docs
Read **[full docs](https://github.com/usmanyunusov/nanospinner#readme)** on GitHub.