{"id":29395268,"url":"https://github.com/pushkarsinghh/flossum","last_synced_at":"2025-07-10T11:27:33.284Z","repository":{"id":302499443,"uuid":"1012649604","full_name":"pushkarsinghh/flossum","owner":"pushkarsinghh","description":"✨ TextFX for Terminals","archived":false,"fork":false,"pushed_at":"2025-07-09T13:02:27.000Z","size":1319,"stargazers_count":2,"open_issues_count":2,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-10T00:36:40.280Z","etag":null,"topics":["animation","cli","javascript","node-module","npm-package","terminal"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/flossum","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pushkarsinghh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-02T16:53:30.000Z","updated_at":"2025-07-09T13:10:53.000Z","dependencies_parsed_at":"2025-07-09T22:40:19.924Z","dependency_job_id":null,"html_url":"https://github.com/pushkarsinghh/flossum","commit_stats":null,"previous_names":["pushkarsinghh/bloom","pushkarsinghh/flossum"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pushkarsinghh/flossum","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pushkarsinghh%2Fflossum","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pushkarsinghh%2Fflossum/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pushkarsinghh%2Fflossum/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pushkarsinghh%2Fflossum/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pushkarsinghh","download_url":"https://codeload.github.com/pushkarsinghh/flossum/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pushkarsinghh%2Fflossum/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264526965,"owners_count":23623198,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animation","cli","javascript","node-module","npm-package","terminal"],"created_at":"2025-07-10T11:27:32.436Z","updated_at":"2025-07-10T11:27:33.278Z","avatar_url":"https://github.com/pushkarsinghh.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🌸 Flossum\n\n\u003e 🎬 Beautiful and minimal terminal animations for your CLI projects, scripts, and creative coding. Bring your text to life with expressive effects.\n\n---\n\n## ✨ Features\n\n* ⌨️ Typewriter effect (`typeOut`)\n* 🌊 Wavy text animation (`wave`)\n* 🌈 Color pulsing effect (`colorPulse`)\n* 🔁 Spinner animation (`spinner`)\n* 🤯 Glitch text effect (`glitch`)\n* 🧩 Scramble decoder effect (`scramble`)\n* 🎞 Frame-based ASCII animation player (`playFrames`)\n* 🅰️ ASCII art text rendering (`asciiArt`)\n\n---\n\n## 📦 Installation\n\n```bash\nnpm install flossum\n```\n\nOr for CLI usage:\n\n```bash\nnpm install -g flossum\n```\n\n---\n\n## 🧪 Usage (API)\n\n```js\nimport flossum from 'flossum';\n\nawait flossum.typeOut(\"Hello!\");\nawait flossum.wave(\"Wavy Text\");\nawait flossum.glitch(\"Glitchy Output\");\nawait flossum.scramble(\"Scrambled Message\");\nawait flossum.spinner(\"Loading...\");\nawait flossum.log(effects.asciiArt(\"ASCII!\", { font: \"block\", colors: [\"cyan\", \"magenta\"] }));\n\nconst frames = [\"[=   ]\", \"[==  ]\", \"[=== ]\", \"[====]\", \"[=== ]\", \"[==  ]\", \"[=   ]\"];\nawait flossum.playFrames(frames, { delay: 100, repeat: 2 });\n```\n\n---\n\n## ⚙️ CLI Usage\n\n```bash\nflossum typeOut \"Hello World\" 60\nflossum reverseType \"Backwards magic\" 60\nflossum wave \"Wavy Text\" --amplitude 3\nflossum colorPulse \"Pulse!\" --colors red,green,blue --duration 1000\nflossum glitch \"Glitch!\" --intensity 4\nflossum scramble \"Secret...\" --delay 50\nflossum rainbow \"🌈\" --duration 2000\nflossum spinner \"Please wait...\"\nflossum progressBar --width 40 --total 100\nflossum playFrames --frames \"[= ]\" \"[==]\" \"[===]\" --delay 100 --repeat 2\n```\n\n```bash\nflossum --help\n```\n\n\u003e Lists all available animations and usage instructions.\n\n---\n\n## 🎬 Demo\n\n```bash\nnode examples/demo.js\nnode examples/asciiArtDemo.js\n```\n\nThis file runs a showcase of all available animations. Perfect for testing or showing off!\n\n---\n\n## 📁 Project Structure\n\n```\nflossum/\n├── lib/\n│   ├── core/       # Utilities and frame player\n│   ├── simple/     # Basic animations\n│   └── effects/    # Text effects (wave, glitch, etc.)\n├── examples/       # Example usage scripts\n├── bin/            # CLI entrypoint\n├── index.js        # Export API\n├── package.json\n└── README.md\n```\n\n---\n\n## 🧑‍💻 Contributing\n\n1. Fork the repo\n2. Create a new branch: `git checkout -b feature/new-animation`\n3. Add your effect in the correct folder (simple/effects/core)\n4. Test it in `examples/`\n5. Open a PR ❤️\n\n---\n\n## 🧾 License\n\nMIT © Pushkar Singh\n\n---\n\n## 🌐 Links\n\n* GitHub: [github.com/pushkarsingh/flossum](https://github.com/pushkarsingh/flossum)\n* NPM: [npmjs.com/package/flossum](https://www.npmjs.com/package/flossum)\n* Website: Coming soon ✨\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpushkarsinghh%2Fflossum","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpushkarsinghh%2Fflossum","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpushkarsinghh%2Fflossum/lists"}