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

https://github.com/bengadbois/flippytext

Print animated text to the terminal
https://github.com/bengadbois/flippytext

animation command-line go golang stdout

Last synced: 9 months ago
JSON representation

Print animated text to the terminal

Awesome Lists containing this project

README

          

# FlippyText [![Build Status](https://travis-ci.org/bengadbois/flippytext.svg?branch=master)](https://travis-ci.org/bengadbois/flippytext) [![Coverage Status](https://coveralls.io/repos/github/bengadbois/flippytext/badge.svg?branch=master)](https://coveralls.io/github/bengadbois/flippytext?branch=master) [![GoDoc](https://godoc.org/github.com/bengadbois/flippytext?status.svg)](https://godoc.org/github.com/bengadbois/flippytext)

FlippyText is a Go library for printing animated text one character at a time.

![Screencap](screencap.gif)

## Install

```
go get github.com/bengadbois/flippytext
```

## Example

```go
import "github.com/bengadbois/flippytext"

func main() {
flippytext.New().Write("hello world")
}
```