npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

fancy-progress-cli

v1.0.2

Published

A customizable emoji-themed CLI progress bar tool

Downloads

11

Readme

# 🎉 Fancy Progress CLI

A 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!

## 📦 Installation

Install the package globally using npm:

```bash
npm install -g fancy-progress-cli

🚀 Usage

Run the CLI with customizable options to display a progress bar with your preferred theme and settings:

fancy-progress --total 50 --speed 80 --theme hearts --message "All done!"

This command creates a progress bar with 50 steps, updates every 80ms, uses the hearts theme, and displays "All done!" when complete.

🔧 Options

Customize the progress bar using the following command-line flags:

| Flag | Alias | Description | Default | |-----------------|-------|------------------------------------------|--------------------| | --total | -t | Total number of steps in the progress bar | 50 | | --speed | -s | Interval between updates (milliseconds) | 100 | | --theme | -m | Theme for the progress bar (or random) | classic | | --message | -msg| Final message after completion | ✅ All done! | | --list-themes | | List all available themes with previews | |

Use --help or -h to see the help menu:

fancy-progress --help

🎨 Themes

Choose from a variety of themes to style your progress bar. Use the --theme flag to select one, or use random for a surprise!

| Theme | Complete / Incomplete | |------------|----------------------| | classic | █ / ░ | | stars | ★ / ☆ | | hearts | ❤ / ♡ | | dots | ● / ○ | | blocks | ▓ / ▒ | | arrows | ➤ / ➞ | | flames | 🔥 / · | | bouncy | ⣿ / ⣀ | | emoji | 🟩 / ⬜ | | tech | # / - | | zen | ✦ / ⋆ | | sushi | 🍣 / 🥢 | | moon | 🌕 / 🌑 | | plants | 🌱 / 🌿 |

Preview all themes with:

fancy-progress --list-themes

💻 Examples

  1. Use the stars theme with a custom message:
fancy-progress --total 40 --speed 60 --theme stars --message "✨ Finished!"
  1. Try a random theme with 30 steps:
fancy-progress --total 30 --theme random --message "Surprise complete!"
  1. Fast progress with the flames theme:
fancy-progress --total 30 --speed 50 --theme flames --message "🔥 Burn complete!"

🛠️ Dependencies

  • cli-progress: For rendering the progress bar.
  • chalk: For colorful terminal output.
  • yargs: For parsing command-line arguments.

📄 License

This project is licensed under the MIT License. See the LICENSE file for details.

🤝 Contributing

Contributions are welcome! Feel free to open issues or submit pull requests on the GitHub repository.

📬 Contact

For questions or feedback, reach out via GitHub Issues.


Happy progressing! 🚀