progressbar

A simple progress bar for golang projects.

MIT License

Stars
5
Committers
2

progressbar

A simple progress bar for golang projects. I created that because there was a long processes in some project and I didn't know what was the progression.

Installation

go get -u github.com/disco07/progressbar

Usage

Basic usage

bar := progressbar.Default(100)
for i := 0; i < 100; i++ {
    bar.Add(1)
    time.Sleep(100 * time.Millisecond)
}

Contributing 🤝

Contributions, issues, and feature requests are welcome!

Feel free to check the issues page.

📝 License

Package Rankings
Top 10.95% on Proxy.golang.org
Badges
Extracted from project README
Go Go Reference Go Report Card coverage License: MIT