Package Exports
- nanospinner
- nanospinner/package.json
Readme
Nano Spinner
Simple and tiny spinner library for Node.js
- It takes 18 times less space in node_modules than
ora
. - It is 6 times faster than
mico-spinner
.
import { createSpinner } from 'nanospinner'
let spinner = createSpinner('Run test')
spinner.start()
setTimeout(() => {
spinner.success()
}, 1000)
Docs
Read full docs on GitHub.