Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/amancevice/spin

Execute a command and display a scrolling block of logs
https://github.com/amancevice/spin

Last synced: about 2 months ago
JSON representation

Execute a command and display a scrolling block of logs

Awesome Lists containing this project

README

        

# Spin

Execute a command and display a scrolling block of logs

Inspired by Docker's layer build output.

![example](./docs/example.gif)

## Usage

Simple usage:

```bash
spin -- bin/example
```

Customize the colors (ANSI codes), number of lines streamed, and title:

```bash
spin \
--title 'just an example' \
--lines 7 \
--color-logs 235 \
--color-spinner 41 \
--color-title 99 \
-- bin/example
```