2019-01-28 07:16:14 +11:00
# Crossterm Screen | cross-platform alternate, raw screen.
2019-04-11 07:46:30 +10:00
![Lines of Code][s7] [![Latest Version][s1]][l1] [![MIT][s2]][l2] [![docs][s3]][l3] [![Join us on Discord][s5]][l5]
2019-01-28 07:16:14 +11:00
[s1]: https://img.shields.io/crates/v/crossterm_screen.svg
[l1]: https://crates.io/crates/crossterm_screen
[s2]: https://img.shields.io/badge/license-MIT-blue.svg
[l2]: ./LICENSE
[s3]: https://docs.rs/crossterm_screen/badge.svg
[l3]: https://docs.rs/crossterm_screen/
2019-04-11 07:46:30 +10:00
[s5]: https://img.shields.io/discord/560857607196377088.svg?logo=discord
2019-04-12 01:37:06 +10:00
[l5]: https://discord.gg/K4nyTDB
2019-01-28 07:16:14 +11:00
2019-03-11 10:09:41 +11:00
[s7]: https://travis-ci.org/TimonPost/crossterm.svg?branch=master
2019-01-28 07:16:14 +11:00
This crate allows you to work with alternate and raw screen cross-platform.
It supports all UNIX and windows terminals down to windows 7 (not all terminals are tested see [Tested Terminals ](#tested-terminals ) for more info)
This crate is a sub-crate of [crossterm ](https://crates.io/crates/crossterm ) to move between screen buffers and switch to raw-mode, it can be use individually.
Other sub-crates are:
- [Crossterm Style ](https://crates.io/crates/crossterm_style )
- [Crossterm Terminal ](https://crates.io/crates/crossterm_terminal )
- [Crossterm Input ](https://crates.io/crates/crossterm_input )
- [Crossterm Cursor ](https://crates.io/crates/crossterm_cursor )
2019-05-16 01:53:55 +10:00
When you want to use other modules as well you might want to use crossterm with [feature flags ](https://timonpost.github.io/crossterm/docs/feature_flags.html ).
2019-01-28 07:16:14 +11:00
2019-05-16 01:53:55 +10:00
In case you are wondering what 'alternate' or 'raw' screen is, you could checkout the [book ](https://timonpost.github.io/crossterm/docs/screen.html ) describing this in more detail.
2019-01-28 07:16:14 +11:00
## Table of contents:
- [Getting started ](#getting-started )
- [Useful links ](#useful-links )
- [Features ](#features )
- [Examples ](#examples )
- [Tested Terminals ](#tested-terminals )
- [Notice ](#notice )
- [Contributing ](#contributing )
- [Authors ](#authors )
- [License ](#license )
## Getting Started
2019-04-11 07:46:30 +10:00
This documentation is only for `crossterm_screen` version `0.2` .
Also, check out the [examples ](./examples ) folders with detailed examples for all functionality of this crate
2019-05-16 01:53:55 +10:00
and the [book ](https://timonpost.github.io/crossterm/docs/screen.html ) for more information about how to use the alternate or raw screen options.
2019-01-28 07:16:14 +11:00
Add the `crossterm_screen` package to your `Cargo.toml` file.
```
[dependencies]
2019-04-11 07:46:30 +10:00
crossterm_screen = "0.2"
2019-01-28 07:16:14 +11:00
```
2019-04-11 07:46:30 +10:00
2019-01-28 07:16:14 +11:00
And import the `crossterm_screen` modules you want to use.
```rust
2019-04-11 07:46:30 +10:00
pub use crossterm_screen::{AlternateScreen, RawScreen};
2019-01-28 07:16:14 +11:00
```
### Useful Links
- [Documentation ](https://docs.rs/crossterm_screen/ )
- [Crates.io ](https://crates.io/crates/crossterm_screen )
2019-05-16 01:53:55 +10:00
- [Book ](https://timonpost.github.io/crossterm/docs/screen.html )
2019-04-11 07:46:30 +10:00
- [Examples ](./examples )
2019-01-28 07:16:14 +11:00
## Features
These are the features of this crate:
- Cross-platform
2019-04-11 07:46:30 +10:00
- Multithreaded (send, sync)
- Detailed Documentation
- Few Dependencies
2019-01-28 07:16:14 +11:00
- Alternate screen
- Raw screen
Planned features:
- make is possible to switch between multiple buffers.
## Examples
2019-04-11 07:46:30 +10:00
The [examples ](./examples ) folder has more complete and verbose examples.
2019-01-28 07:16:14 +11:00
## Tested terminals
- Windows Powershell
- Windows 10 (pro)
- Windows CMD
- Windows 10 (pro)
- Windows 8.1 (N)
- Ubuntu Desktop Terminal
- Ubuntu 17.10
- (Arch, Manjaro) KDE Konsole
- Linux Mint
This crate supports all Unix terminals and windows terminals down to Windows 7 but not all of them have been tested.
If you have used this library for a terminal other than the above list without issues feel free to add it to the above list, I really would appreciate it.
## Authors
* **Timon Post** - *Project Owner & creator*
## License
2019-04-11 07:46:30 +10:00
This project is licensed under the MIT License - see the [LICENSE.md ](./LICENSE ) file for details