🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

github.com/jhajjaarap/go-spinner

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/jhajjaarap/go-spinner

v0.0.0-20150530144529-cf8ef1d64394
Source
Go
Version published
Created
Source

Simple CLI Spinner for Go

This is a simple spinner / activity indicator for Go command line apps. Useful when you want your users to know that there is activity and that the program isn't hung.
The indicator automagically converts itself in a simple log message if it detects that you have piped stdout to somewhere else than the console (You don't really want a spinner in your logger, do you?).

asciicast

Installation

To install spinner.go, simply run:

$ go get github.com/janeczku/go-spinner

Make sure your PATH includes to the $GOPATH/bin directory so your commands can be easily used:

export PATH=$PATH:$GOPATH/bin

Example usage

package main

import (
	"time"
	"github.com/janeczku/go-spinner"
	
)

func main() {
	s := spinner.StartNew("This may take some while...")
	time.Sleep(3 * time.Second) // something more productive here
	s.Stop()
}

API

s := spinner.StartNew(title string)

Quickstart. Creates a new spinner with default options and start it

s := spinner.NewSpinner(title string)

Creates a new spinner object

s.SetSpeed(time.Millisecond)

Sets a custom speed for the spinner animation (default 150ms/frame)

s.SetCharset([]string)

If you don't like the spinning stick, give it an Array of strings like {".", "o", "0", "@", "*"}

s.Start()

Start printing out the spinner animation

s.Stop()

Stops the spinner

FAQs

Package last updated on 30 May 2015

Did you know?

Socket

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.

Install

Related posts