Files

43 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2023-11-01 10:35:10 -07:00
## @xterm/addon-serialize
An addon for [xterm.js](https://github.com/xtermjs/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
```bash
2023-11-01 10:35:10 -07:00
npm install --save @xterm/addon-serialize
```
### Usage
```ts
import { Terminal } from "@xterm/xterm";
2023-11-01 10:35:10 -07:00
import { SerializeAddon } from "@xterm/addon-serialize";
const terminal = new Terminal();
const serializeAddon = new SerializeAddon();
terminal.loadAddon(serializeAddon);
terminal.write("something...", () => {
console.log(serializeAddon.serialize());
});
```
2023-11-01 10:35:10 -07:00
See the full [API](https://github.com/xtermjs/xterm.js/blob/master/addons/addon-serialize/typings/addon-serialize.d.ts) for more advanced usage.
### Benchmark
⚠️ Ensure you have `lolcat`, `hexdump` programs installed in your computer
```shell
$ git clone https://github.com/xtermjs/xterm.js.git
$ cd xterm.js
$ yarn
2023-11-01 10:35:10 -07:00
$ cd addons/addon-serialize
$ yarn benchmark && yarn benchmark-baseline
2023-11-01 10:35:10 -07:00
$ # change some code in `@xterm/addon-serialize`
$ yarn benchmark-eval
```