Files
emacs/lisp/emacs-application-framework/app/terminal/node_modules/xterm-addon-attach
2020-12-05 21:29:49 +01:00
..
2020-12-05 21:29:49 +01:00
2020-12-05 21:29:49 +01:00
2020-12-05 21:29:49 +01:00
2020-12-05 21:29:49 +01:00
2020-12-05 21:29:49 +01:00
2020-12-05 21:29:49 +01:00
2020-12-05 21:29:49 +01:00

xterm-addon-attach

An addon for xterm.js that enables attaching to a web socket. This addon requires xterm.js v4+.

Install

npm install --save xterm-addon-attach

Usage

import { Terminal } from 'xterm';
import { AttachAddon } from 'xterm-addon-attach';

const terminal = new Terminal();
const attachAddon = new AttachAddon(webSocket);
terminal.loadAddon(attachAddon);

See the full API for more advanced usage.