The simplest and tiniest terminal spinner for Node.js
npm install nanospinnerThe 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 15 times smaller than ora`.
- Support both CJS and ESM projects.
- TypeScript type declarations included.