caarlos0-graveyard / spin

Licence: other
A very simple spinner for cli Go apps

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to spin

Egjs View360
360 integrated viewing solution
Stars: ✭ 252 (+260%)
Mutual labels:  spinner
ZXLoadingView
🍕ZXLoadingView is an iOS progress-activity
Stars: ✭ 14 (-80%)
Mutual labels:  spinner
loading-indicator
🚦 Simple and customizable command line loading indicator
Stars: ✭ 18 (-74.29%)
Mutual labels:  spinner
Text Spinners
Pure text, CSS only, font independent, inline loading indicators
Stars: ✭ 2,728 (+3797.14%)
Mutual labels:  spinner
lsp spinner.nvim
neovim plugin to retrieve the name of the running LSP client(s) and display a spinner when there are wip job
Stars: ✭ 23 (-67.14%)
Mutual labels:  spinner
spinners-angular
Lightweight SVG/CSS spinners for Angular
Stars: ✭ 21 (-70%)
Mutual labels:  spinner
Vue Element Loading
⏳ Loading inside a container or full screen for Vue.js
Stars: ✭ 234 (+234.29%)
Mutual labels:  spinner
InstagramActivityIndicator
Activity Indicator similar to Instagram's
Stars: ✭ 49 (-30%)
Mutual labels:  spinner
loading
Laravel package to add loading indicator to pages while page is loading.
Stars: ✭ 38 (-45.71%)
Mutual labels:  spinner
clappr-plugins
Main plugins for the Clappr project
Stars: ✭ 22 (-68.57%)
Mutual labels:  spinner
ConsoleTools
A set of tools and "controls" for the .net Console.
Stars: ✭ 67 (-4.29%)
Mutual labels:  spinner
Indian-States-and-Cities-Android
Offline Android App to illustrate Auto Complete Indian cities and states text views
Stars: ✭ 19 (-72.86%)
Mutual labels:  spinner
react-redux-spinner
An automatic spinner for react and redux
Stars: ✭ 81 (+15.71%)
Mutual labels:  spinner
Spinners React
Lightweight SVG/CSS spinners for React
Stars: ✭ 254 (+262.86%)
Mutual labels:  spinner
material-design-spinner
Material design spinner for apps powered by Starling and Feathers
Stars: ✭ 23 (-67.14%)
Mutual labels:  spinner
Swiftui Animation
SwiftUI Animation
Stars: ✭ 233 (+232.86%)
Mutual labels:  spinner
vue-product-spinner
🚗 A 3D product spinner for Vue.js with no dependencies
Stars: ✭ 94 (+34.29%)
Mutual labels:  spinner
react-native-spinner-button
React Native button component with multiple animated spinners
Stars: ✭ 105 (+50%)
Mutual labels:  spinner
spinnies
Node.js module to create and manage multiple spinners in command-line interface programs
Stars: ✭ 111 (+58.57%)
Mutual labels:  spinner
spinner
Progress indicators for command line Clojure apps, including support for indeterminate and determinate tasks.
Stars: ✭ 32 (-54.29%)
Mutual labels:  spinner

spin

A very simple spinner for cli golang apps.

Release Software License Travis Coverage Status Go Doc Go Report Card SayThanks.io

Example usage:

package main

import (
	"fmt"
	"time"

	"github.com/caarlos0/spin"
)

func main() {
	s := spin.New("%s Working...")
	s.Start()
	defer s.Stop()
	time.Sleep(100 * 20 * time.Millisecond)
}

asciicast

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].