xterm-js-sys 4.5.0-alpha0

Rust WebAssembly bindings for xterm.js.
Documentation

xterm-js-sys

Build Status License: MIT crates.io API Docs

Rust bindings for xterm.js.

Features

Currently this covers about half the xterm.js API.

This crate has two features:

  • ext: Adds some nicer, more rust-y functions on top of the core bindings; all the functions are in this module.
  • tui-backend: Provides an xterm.js backed backend for the tui crate; located here.

This crate also does support the infrastructure xterm.js has for addons. Currently only the xterm-addon-fit package has Rust bindings. If you do end up making bindings for an xterm.js addon, feel free to send in a PR to update this list!

xterm.js addons

First party addon packages:

Usage

Add this to your Cargo.toml:

[dependencies]
xterm-js-sys = "4.5.0-alpha0"

And make sure that your bundler/JS package manager is set to grab the corresponding verison of the xterm.js package. The examples in this repo use parcel for which all that's needed is adding xterm to your package.json:

  "dependencies": {
    "xterm": "^4.5.0"
  }

Make sure you also add the packages for any addons you're using; see our examples' package.json for an example.

The xterm.js documentation is a good reference for actual usage of the API; these bindings are almost always one to one.

Examples

This repo has a few examples that show usage of the bindings, usage with the ext feature, and one use of the tui backend.

To build these, enter the folder of the example you wish to run (i.e. examples/basic, and:

  • install the packages (npm i or yarn install)
  • run the watch script (npm run watch or yarn run watch)

It should (hopefully) just work! 🤞

These examples are also deployed here.

Minimum Supported Rust Version (MSRV)

This crate is currently guaranteed to compile on stable Rust 1.43 and newer. We offer no guarantees that this will remain true in future releases but do promise to always support (at minimum) the latest stable Rust version and to document changes to the MSRV in the changelog.

Contributing

PRs are (very) welcome!