{"id":29417874,"url":"https://github.com/sameer52718/fancy-progress-cli","last_synced_at":"2026-04-15T14:32:38.759Z","repository":{"id":303965966,"uuid":"1017333071","full_name":"sameer52718/fancy-progress-cli","owner":"sameer52718","description":"Fancy and customizable CLI progress bar with themes","archived":false,"fork":false,"pushed_at":"2025-07-10T11:46:59.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-10T18:53:50.115Z","etag":null,"topics":["cli","fancy","nodejs","npm-package","progress-bar","terminal"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/fancy-progress-cli","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sameer52718.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-10T11:25:28.000Z","updated_at":"2025-07-10T11:53:11.000Z","dependencies_parsed_at":"2025-07-10T19:11:58.336Z","dependency_job_id":null,"html_url":"https://github.com/sameer52718/fancy-progress-cli","commit_stats":null,"previous_names":["sameer52718/fancy-progress-cli"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sameer52718/fancy-progress-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameer52718%2Ffancy-progress-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameer52718%2Ffancy-progress-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameer52718%2Ffancy-progress-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameer52718%2Ffancy-progress-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sameer52718","download_url":"https://codeload.github.com/sameer52718/fancy-progress-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sameer52718%2Ffancy-progress-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31845671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T13:28:40.153Z","status":"ssl_error","status_checked_at":"2026-04-15T13:28:29.396Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cli","fancy","nodejs","npm-package","progress-bar","terminal"],"created_at":"2025-07-11T22:13:30.983Z","updated_at":"2026-04-15T14:32:38.737Z","avatar_url":"https://github.com/sameer52718.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"```markdown\n# 🎉 Fancy Progress CLI\n\nA customizable, emoji-themed CLI progress bar tool for Node.js. Add some flair to your terminal with visually engaging progress bars, perfect for scripts, automation tasks, or just for fun!\n\n## 📦 Installation\n\nInstall the package globally using npm:\n\n```bash\nnpm install -g fancy-progress-cli\n```\n\n## 🚀 Usage\n\nRun the CLI with customizable options to display a progress bar with your preferred theme and settings:\n\n```bash\nfancy-progress --total 50 --speed 80 --theme hearts --message \"All done!\"\n```\n\nThis command creates a progress bar with 50 steps, updates every 80ms, uses the `hearts` theme, and displays \"All done!\" when complete.\n\n## 🔧 Options\n\nCustomize the progress bar using the following command-line flags:\n\n| Flag            | Alias | Description                              | Default            |\n|-----------------|-------|------------------------------------------|--------------------|\n| `--total`       | `-t`  | Total number of steps in the progress bar | `50`               |\n| `--speed`       | `-s`  | Interval between updates (milliseconds)  | `100`              |\n| `--theme`       | `-m`  | Theme for the progress bar (or `random`) | `classic`          |\n| `--message`     | `-msg`| Final message after completion           | `✅ All done!`      |\n| `--list-themes` |       | List all available themes with previews  |                    |\n\nUse `--help` or `-h` to see the help menu:\n\n```bash\nfancy-progress --help\n```\n\n## 🎨 Themes\n\nChoose from a variety of themes to style your progress bar. Use the `--theme` flag to select one, or use `random` for a surprise!\n\n| Theme      | Complete / Incomplete |\n|------------|----------------------|\n| `classic`  | █ / ░                |\n| `stars`    | ★ / ☆                |\n| `hearts`   | ❤ / ♡                |\n| `dots`     | ● / ○                |\n| `blocks`   | ▓ / ▒                |\n| `arrows`   | ➤ / ➞                |\n| `flames`   | 🔥 / ·                |\n| `bouncy`   | ⣿ / ⣀               |\n| `emoji`    | 🟩 / ⬜               |\n| `tech`     | # / -                |\n| `zen`      | ✦ / ⋆                |\n| `sushi`    | 🍣 / 🥢               |\n| `moon`     | 🌕 / 🌑               |\n| `plants`   | 🌱 / 🌿               |\n\nPreview all themes with:\n\n```bash\nfancy-progress --list-themes\n```\n\n## 💻 Examples\n\n1. Use the `stars` theme with a custom message:\n\n```bash\nfancy-progress --total 40 --speed 60 --theme stars --message \"✨ Finished!\"\n```\n\n2. Try a random theme with 30 steps:\n\n```bash\nfancy-progress --total 30 --theme random --message \"Surprise complete!\"\n```\n\n3. Fast progress with the `flames` theme:\n\n```bash\nfancy-progress --total 30 --speed 50 --theme flames --message \"🔥 Burn complete!\"\n```\n\n## 🛠️ Dependencies\n\n- [cli-progress](https://www.npmjs.com/package/cli-progress): For rendering the progress bar.\n- [chalk](https://www.npmjs.com/package/chalk): For colorful terminal output.\n- [yargs](https://www.npmjs.com/package/yargs): For parsing command-line arguments.\n\n## 📄 License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## 🤝 Contributing\n\nContributions are welcome! Feel free to open issues or submit pull requests on the [GitHub repository](https://github.com/sameer52718/fancy-progress-cli).\n\n## 📬 Contact\n\nFor questions or feedback, reach out via [GitHub Issues](https://github.com/sameer52718/fancy-progress-cli/issues).\n\n---\n\nHappy progressing! 🚀\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsameer52718%2Ffancy-progress-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsameer52718%2Ffancy-progress-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsameer52718%2Ffancy-progress-cli/lists"}