Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lpil/spinner


https://github.com/lpil/spinner

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# spinner

[![Package Version](https://img.shields.io/hexpm/v/spinner)](https://hex.pm/packages/spinner)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/spinner/)

![The spinner running in a terminal](spinner.gif)

Animated progress spinners for your console.

Works on both Erlang and JavaScript runtimes.
```sh
gleam add spinner
```
```gleam
import spinner
import gleam/io
import gleam_community/ansi

pub fn main() {
let spinner =
spinner.new("Reticulating 3-Dimensional Splines")
|> spinner.with_colour(ansi.yellow)
|> spinner.start

// Do some stuff while the spinner runs...

// The spinner text can be changed
spinner.set_text(spinner, "Collecting Meteor Particles")

// Finish it when you're done
spinner.stop(spinner)
io.println("Done!")
}
```

Further documentation can be found at .