Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/everlastingbugstopper/billboard
create informational boxes in the terminal
https://github.com/everlastingbugstopper/billboard
Last synced: 10 days ago
JSON representation
create informational boxes in the terminal
- Host: GitHub
- URL: https://github.com/everlastingbugstopper/billboard
- Owner: EverlastingBugstopper
- License: apache-2.0
- Created: 2020-02-18T01:31:01.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-16T17:30:37.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T13:36:55.719Z (26 days ago)
- Language: Rust
- Size: 49.8 KB
- Stars: 14
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE_APACHE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Billboard
Display informational boxes in the terminal.
## Example
Your `Cargo.toml` should include `billboard` as a dependency
```toml
[dependencies]
billboard = "0.2"
``````rust
use billboard::Billboard;fn main() {
Billboard::default().eprint("Hello, World!");
}
```More examples can be found [here](/examples).
## Acknowledgements
This library was heavily inspired by [boxen](https://npmjs.com/package/boxen),
but has no official association with that project.