Docs
Beautiful and minimal terminal animations for your CLI projects.
Note: Flossum is designed for Node.js environments.
Installation
VS Code Extension
RECOMMENDEDAccelerate your development workflow with the official Flossum DevTools extension for Visual Studio Code.
Snippets
Type ftype, fspin, or fwave to instantly generate boilerplate code.
Hover Docs
Hover over any flossum function to see parameter details, types, and usage examples directly in your editor.
Animations
Typewriter
Types text character by character.
flossum typeout "Hello World" -s 80await flossum.typeOut("Hello World", 80);Reverse Type
Reveals text starting from the end.
flossum reverse "Goodbye" -s 60await flossum.reverseType("Goodbye", 60);Wave
Animated wave effect with RGB colors.
flossum wave "Surfing" -d 3000await flossum.wave("Surfing", { duration: 3000 });Glitch
Digital distortion/glitch animation.
flossum glitch "System Failure" -d 2000 -s 15await flossum.glitch("System Failure", { duration: 2000, steps: 15 });Scramble
Decodes text from random characters.
flossum scramble "Decrypted" -d 2000await flossum.scramble("Decrypted", { duration: 2000 });Rainbow
Cycles text through the color spectrum.
flossum rainbow "Colors!" -d 3000await flossum.rainbow("Colors!", { duration: 3000 });Pulse
Color pulsing effect (Blue/Cyan).
flossum pulse "Energy" -d 2500await flossum.colorPulse("Energy", 2500);Spinner
Classic loading spinner.
flossum spinner "Loading..." -d 3000await flossum.spinner("Loading...", 3000);Progress Bar
Animated ASCII progress bar.
flossum progress -w 30 -d 2000await flossum.progressBar({ width: 30, duration: 2000 });Dots
Loading animation with cycling dots.
flossum dots "Thinking" -c 5await flossum.dots("Thinking", { cycles: 5 });Flash
Blinks text on and off.
flossum flash "Alert!" -f 6await flossum.flash("Alert!", { flashes: 6 });Type-Delete
Types text then deletes it.
flossum typeDelete "Typing..." -d 50await flossum.typeDelete("Typing...", { delay: 50 });Contributing
- Fork the repo.
- Create a branch:
git checkout -b feature/name - Add your animation in
flossum/lib/ - Submit a Pull Request!