
Product
Introducing Rust Support in Socket
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
github.com/veneratedgem/spinix
Spinix 🌀 is a Go package that provides terminal-based loading animations, including spinners and progress bars. It supports customizable themes, colors, and speeds, allowing developers to create visually appealing loading indicators that can fit various terminal environments and aesthetics.
To install Spinix, use go get
:
go get github.com/veneratedgem/spinix
Here’s how to create and use a spinner:
package main
import (
"time"
"github.com/veneratedgem/spinix"
)
func main() {
spinner := spinix.NewSpinner().
SetSpinnerColor("\033[34m").
SetMessage("Loading...").
SetMessageColor("\033[36m").
SetSpeed(100 * time.Millisecond) // Adjust speed if necessary
spinner.Start()
// Simulate some work
time.Sleep(5 * time.Second)
spinner.Stop()
// spinix.NewSpinner() will also create spinner with default properties
// e.g
// spinner := spinix.NewSpinner()
// spinner.Start()
// time.Sleep(5 * time.Second)
// spinner.Stop()
}
Creating and using a progress bar is just as straightforward:
package main
import (
"time"
"github.com/veneratedgem/spinix"
)
func main() {
progressBar := spinix.NewProgressBar().
SetWidth(50).
SetColor("\033[32m").
SetLabel("Progress:")
progressBar.Start()
for i := 0; i <= 100; i++ {
progressBar.Update(i)
time.Sleep(50 * time.Millisecond) // Simulate work
}
progressBar.Stop()
// spinix.NewProgressBar() will also create progress bar with default properties.
// e.g
// progressBar := spinix.NewProgressBar()
// progressBar.Start()
// for i := 0; i <= 100; i++ {
// progressBar.Update(i)
// time.Sleep(50 * time.Millisecond) // Simulate work
// }
// progressBar.Stop()
}
You can customize the spinner's message, colors, speed, theme and define a custom callback function that will run once the and spinner is completed:
func main() {
spinner := spinix.NewSpinner().
SetMessage("Processing...").
SetMessageColor("\033[33m").
SetCustomTheme([]string{"▁", "▃", "▄", "▅", "▆", "▇", "█", "▇", "▆", "▅", "▄", "▃"}).
SetSpinnerColor("\033[31m"). // Red color (you can use every color you want with that format but spinner color will not work with emoji spinner)
SetSpeed(200 * time.Millisecond).
SetCallback(func() {
fmt.Println("The callback function has executed!")
})
spinner.Start()
time.Sleep(2 * time.Second) // Simulate a task
spinner.Stop()
}
You can customize the progress bar's message, width, color, appearance and define a custom callback function that will run once the and progress bar is completed:
func main() {
progressBar := spinix.NewProgressBar().
SetWidth(60).
SetBarChar("█").
SetEmptyChar("░").
SetBorders("[", "]").
SetShowPercentage(true).
SetCallback(func() {
fmt.Println("The callback function has executed!")
})
progressBar.Start()
for i := 0; i <= 100; i++ {
progressBar.Update(i)
time.Sleep(50 * time.Millisecond) // Simulate work
}
progressBar.Stop()
}
You can also use predefined spinner themes that provided by spinix: See all available predefined spinner themes below
func main() {
spinner := spinix.NewSpinner().
SetMessage("Processing...").
SetMessageColor("\033[33m").
SetTheme(spinix.SpinnerRotatingArrow)
spinner.Start()
// Simulate some work
time.Sleep(5 * time.Second)
spinner.Stop()
}
You can use predefined progress bar style that provided by spinix: See all available predefined progress bar styles below
func main() {
progressBar := spinix.NewProgressBar().
SetStyle(spinix.PbStyleBasic).
SetShowPercentage(true)
progressBar.Start()
for i := 0; i <= 100; i++ {
progressBar.Update(i)
time.Sleep(50 * time.Millisecond) // Simulate work
}
progressBar.Stop()
}
The Spinix package comes with several predefined spinner themes. Here’s a list of the available styles along with their visualizations:
Spinner Theme | Visualization |
---|---|
SpinnerClassicDots | ⠋ ⠙ ⠹ ⠸ ⠼ ⠴ ⠦ ⠧ ⠇ ⠏ |
SpinnerLineTheme | - \ |
SpinnerPulsatingDot | ⠁ ⠂ ⠄ ⠂ |
SpinnerGrowingBlock | ▁ ▃ ▄ ▅ ▆ ▇ █ ▇ ▆ ▅ ▄ ▃ |
SpinnerRotatingArrow | → ↘ ↓ ↙ ← ↖ ↑ ↗ |
SpinnerArcLoader | ◜ ◠ ◝ ◞ ◡ ◟ |
SpinnerClock | 🕛 🕐 🕑 🕒 🕓 🕔 🕕 🕖 🕗 🕘 🕙 🕚 |
SpinnerCircleDots | ◐ ◓ ◑ ◒ |
SpinnerBouncingBall | ⠁ ⠂ ⠄ ⠂ |
SpinnerFadingSquares | ▖ ▘ ▝ ▗ |
SpinnerDotsFading | ⠁ ⠂ ⠄ ⠂ ⠁ ⠂ ⠄ ⠂ |
SpinnerEarth | 🌍 🌎 🌏 |
SpinnerSnake | ⠈ ⠐ ⠠ ⢀ ⡀ ⠄ ⠂ ⠁ |
SpinnerTriangle | ◢ ◣ ◤ ◥ |
SpinnerSpiral | ▖ ▘ ▝ ▗ ▘ ▝ ▖ ▗ |
SpinnerWave | ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ ▇ ▆ ▅ ▄ ▃ ▂ ▁ |
SpinnerWeather | 🌤️ ⛅ 🌥️ ☁️ 🌧️ ⛈️ 🌩️ 🌨️ |
SpinnerRunningPerson | 🏃💨 🏃💨💨 🏃💨💨💨 🏃♂️💨 🏃♂️💨💨 🏃♀️💨 🏃♀️💨💨 |
SpinnerRunningCat | 🐱💨 🐈💨 🐱💨💨 🐈💨💨 |
SpinnerRunningDog | 🐕💨 🐶💨 🐕🦺💨 🐕💨💨 |
SpinnerCycling | 🚴 🚴♂️ 🚴♀️ 🚵 🚵♂️ 🚵♀️ |
SpinnerCarLoading | 🚗💨 🚙💨 🚓💨 🚕💨 🚐💨 🚔💨 |
SpinnerRocket | 🚀 🚀💨 🚀💨💨 🚀💨💨💨 🚀🌌 🚀🌠 |
SpinnerOrbit | 🌑 🌒 🌓 🌔 🌕 🌖 🌗 🌘 |
SpinnerTrain | 🚆 🚄 🚅 🚇 🚊 🚉 |
SpinnerAirplane | ✈️ 🛫 🛬 ✈️💨 ✈️💨💨 |
SpinnerFireworks | 🎆 🎇 🎆🎇 🎇🎆 |
SpinnerPizzaDelivery | 🍕💨 🍔💨 🌭💨 🍟💨 |
SpinnerHeartbeat | 💓 💗 💖 💘 💞 💝 💖 |
The ProgressBar can be styled using various predefined styles. Here’s a list of available styles:
Progress Bar Style | Description |
---|---|
PbStyleBasic | ===========================------------- 69% |
PbStyleClassic | [############################..] 95% |
PbStyleMinimal | ******* 79% |
PbStyleBold | ❮■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ ❯ 93% |
PbStyleDashed | [▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▮▯▯▯▯▯▯▯▯▯▯▯▯▯▯▯▯▯▯] 61% |
PbStyleElegant | ❬▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▰▱▱▱▱▱▱▱▱❭ 79 |
PbStyleEmoji | 🚩🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀🚀✨✨✨✨✨✨✨✨🎯 71% |
PbStyleFuturistic | ⟦◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉◉○○○○○○○○○○○○○○○○○⟧ 59% |
PbStyleGreenDevelopment | 🌱🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿🌿____🌳 91% |
Here’s a complete example that demonstrates both the spinner and the progress bar together:
package main
import (
"time"
"github.com/veneratedgem/spinix"
)
func main() {
spinner := spinix.NewSpinner()
progressBar := spinix.NewProgressBar()
spinner.SetMessage("Loading Data...")
spinner.Start()
progressBar.SetWidth(50)
progressBar.SetColor("\033[36m") // Cyan
progressBar.Start()
for i := 0; i <= 100; i++ {
progressBar.Update(i)
time.Sleep(50 * time.Millisecond) // Simulate work
}
progressBar.Stop()
spinner.Stop()
}
The demo run for the progress bar with style as green
.
Contributions are welcome! Please feel free to open issues, submit pull requests, or provide feedback.
This project is licensed under the MIT License. See the LICENSE file for more details.
Thanks to all the amazing contributors for making spinix better!
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.