$ cnpm install char-spinner
Put a little spinner on process.stderr, as unobtrusively as possible.
var spinner = require("char-spinner")
// All options are optional
// even the options argument itself is optional
spinner(options)
Usually the defaults are what you want. Mostly they're just configurable for testing purposes.
stream Output stream. Default=process.stderrtty Only show spinner if output stream has a truish .isTTY. Default=truestring String of chars to spin. Default='/-\\|'interval Number of ms between frames, bigger = slower. Default=50cleanup Print '\r \r' to stream on process exit. Default=trueunref Unreference the spinner interval so that the process can
exit normally. Default=truedelay Number of frames to "skip over" before printing the spinner.
Useful if you want to avoid showing the spinner for very fast
actions. Default=2Returns the generated interval, if one was created.
Copyright 2013 - present © cnpmjs.org | Home |