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)
Read full docs on GitHub.