@daiyam/xterm-tab-addon-serialize
TypeScript icon, indicating that this package has built-in type declarations

0.11.0-beta.20.0 • Public • Published

xterm-addon-serialize

An addon for xterm.js that enables xterm.js to serialize a terminal framebuffer into string or html. This addon requires xterm.js v4+.

⚠️ This is an experimental addon that is still under construction ⚠️

Install

npm install --save xterm-addon-serialize

Usage

import { Terminal } from "xterm";
import { SerializeAddon } from "xterm-addon-serialize";

const terminal = new Terminal();
const serializeAddon = new SerializeAddon();
terminal.loadAddon(serializeAddon);

terminal.write("something...", () => {
  console.log(serializeAddon.serialize());
});

See the full API for more advanced usage.

Benchmark

⚠️ Ensure you have lolcat, hexdump programs installed in your computer

$ git clone https://github.com/xtermjs/xterm.js.git
$ cd xterm.js
$ yarn
$ cd addons/xterm-addon-serialize
$ yarn benchmark && yarn benchmark-baseline
$ # change some code in `xterm-addon-serialize`
$ yarn benchmark-eval

Readme

Keywords

Package Sidebar

Install

npm i @daiyam/xterm-tab-addon-serialize

Weekly Downloads

1

Version

0.11.0-beta.20.0

License

MIT

Unpacked Size

160 kB

Total Files

6

Last publish

Collaborators

  • daiyam