-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Can I use with ora? #5
Comments
I don't know, what would you like to do? |
You can hack it to make it work like you want (a little bit tricky): const spinner = require('ora')(' ');
const rainbow = require('chalk-animation').rainbow('hello world').stop();
setInterval(() => {
spinner.text = rainbow.frame().substring(11);
spinner.render();
}, 50); N.B: |
awesome |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much for making the awesome tool.
But I have a question.
Is it possible to use with ora?
It should be 😎 cool if I can it these together.
The text was updated successfully, but these errors were encountered: