Archived
Private
Public Access
1
0

Initial commit

This commit is contained in:
2022-09-04 12:45:01 +02:00
commit f4a01d6a69
11601 changed files with 4206660 additions and 0 deletions

21
node/TestCli/node_modules/nanospinner/README.md generated vendored Normal file
View File

@@ -0,0 +1,21 @@
# 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.