[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z8QK6XU749JB2)
[![Latest Version][crate-badge]][crate-link]
[![docs][docs-badge]][docs-link]
![Lines of Code][loc-badge]
[![MIT][license-badge]][license-link]
[![Join us on Discord][discord-badge]][discord-link]
[![Stable Status][actions-stable-badge]][actions-link]
[![Beta Status][actions-nightly-badge]][actions-link]
# Unified API over different TUI libraries.
This library offers a universal API over various terminal libraries such as
[termion][termion], [crossterm][crossterm], [ncurses][ncurses], [pancurses][pancurses], and [console][console].
Why would I need this library? Three main reasons:
1. Being less dependent on a specific terminal library with certain features.
2. Support different features depending on the chosen backend and allow you to change at any given time.
3. Hides implementation details (raw mode, write to the buffer, batch operations).
4. Hides the differences (cursor 0 or 1 based, cleaning resources, event handling, performing actions. )
5. Reduces backend mapping duplication in the ecosystem ([cursive][cursive], [tui][tui], [termimad][termimad], ...)
This library is still quite young.
If you experience problems, feel free to make an issue.
I'd fix it as soon as possible.
## Table of Contents
* [Features](#features)
* [Implemented Backends](#implemented-backends)
* [Getting Started](#getting-started)
* [Other Resources](#other-resources)
* [Contributing](#contributing)
## Features
- Batching multiple terminal commands before executing (flush).
- Complete control over the underlying buffer.
- Locking the terminal for a certain duration.
- Backend of your choice.
### Implemented Backends
- [Crossterm][crossterm] (Pure rust and crossplatform)
- [Termion][termion] (Pure rust for UNIX systems)
- [Crosscurses][crosscurses] (crossplatform but requires ncurses C dependency (**fork pancurses**))
Use **one** of the below feature flags to choose an backend.
| Feature | Description |
| :------ | :------ |
| `crossterm-backend` | crossterm backend will be used.|
| `termion-backend` | termion backend will be used.|
| `crosscurses-backend` | crosscurses backend will be used.|
_like_
```toml
[dependencies.terminal]
version = "0.2"
features = ["crossterm-backend"]
```
In the [backend-specification](docs/backend-specification.md) document you will find each backend and it's benefits described.
### Yet to Implement
- [ncurses][ncurses]
## Getting Started
Click to show Cargo.toml.
```toml
[dependencies]
terminal = "0.2"
features = ["your_backend_choice"]
```
```rust
use terminal::{Action, Clear, error, Retrieved, Value};
use std::io::Write;
pub fn main() -> error::Result<()> {
let mut terminal = terminal::stdout();
// perform an single action.
terminal.act(Action::ClearTerminal(Clear::All))?;
// batch multiple actions.
for i in 0..20 {
terminal.batch(Action::MoveCursorTo(0, i))?;
terminal.write(format!("{}", i).as_bytes());
}
// execute batch.
terminal.flush_batch();
// get an terminal value.
if let Retrieved::TerminalSize(x, y) = terminal.get(Value::TerminalSize)? {
println!("\nx: {}, y: {}", x, y);
}
Ok(())
}
```
### Other Resources
- [API documentation](https://docs.rs/terminal/)
- [Examples repository](https://github.com/crossterm-rs/terminal/examples)
- [Backend Specification](docs/backend-specification.md)
## Contributing
I would appreciate any kind of contribution. Before you do, please,
read the [Contributing](docs/CONTRIBUTING.md) guidelines.
## Authors
* **Timon Post** - *Project Owner & creator*
## License
This project, `terminal` are licensed under the MIT
License - see the [LICENSE](https://github.com/crossterm-rs/terminal/blob/master/LICENSE) file for details.
[crate-badge]: https://img.shields.io/crates/v/terminal.svg
[crate-link]: https://crates.io/crates/terminal
[license-badge]: https://img.shields.io/badge/license-MIT-blue.svg
[license-link]: terminal/LICENSE
[docs-badge]: https://docs.rs/terminal/badge.svg
[docs-link]: https://docs.rs/terminal/
[discord-badge]: https://img.shields.io/discord/560857607196377088.svg?logo=discord
[discord-link]: https://discord.gg/K4nyTDB
[actions-link]: https://github.com/crossterm-rs/terminal/actions
[actions-stable-badge]: https://github.com/crossterm-rs/terminal/workflows/Terminal%20Adapter%20Test/badge.svg
[actions-nightly-badge]: https://github.com/crossterm-rs/terminal/workflows/Terminal%20Adapter%20Test/badge.svg
[loc-badge]: https://tokei.rs/b1/github/crossterm-rs/terminal?category=code
[termion]: https://crates.io/crates/termion
[crossterm]: https://crates.io/crates/crossterm
[cursive]: https://crates.io/crates/cursive
[tui]: https://crates.io/crates/tui
[termimad]: https://crates.io/crates/termimad
[ncurses]: https://crates.io/crates/ncurses
[crosscurses]: https://crates.io/crates/crosscurses
[pancurses]: https://crates.io/crates/pancurses
[console]: https://crates.io/crates/console