KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
ratatui-xterm-js
★ 25
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
LLM_json_schema
:
Guaranty the output of an LLM to follow a json schema.
Snooze_Guard
:
No description available.
DiffCollage
:
An unoffical but faithful reproducing of DiffCollage
la-inst
:
Examine and discover LoongArch instructions
slurm-proxmox-cluster
:
A HPC Cluster on Proxmox VMs using the Slurm Scheduler.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ratatui-xterm-js
?
Download (.md)
# ratatui-xterm-js This is a demo/POC of a ratatui backend based on crossterm that can run on both web and native environments with minimal implementation differences. It requires a [fork of crossterm](https://github.com/aschey/crossterm/tree/wasm) that has certain features disabled or stubbed out when building for wasm. I hope to get these changes merged upstream. On the web, it runs on [xtermjs](http://xtermjs.org/) using [xterm-js-rs](https://github.com/segeljakt/xterm-js-rs). We can't spawn threads in the browser so we make use of crossterm's async input streams when running natively and [wasm-bindgen-futures](https://crates.io/crates/wasm-bindgen-futures) on the web. To run the demos (requires [wasm-pack](https://github.com/rustwasm/wasm-pack)): ```bash cd ./examples/simple npm install cd www npm install # run wasm build npm run start # or run native build cargo run ``` ```bash cd ./examples/inline npm install cd www npm install # run wasm build npm run start # or run native build cargo run ```