You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Andy Stewart 571239569e Remove symlinks. 6 years ago
..
lib Remove symlinks. 6 years ago
out Remove symlinks. 6 years ago
src Remove symlinks. 6 years ago
typings Remove symlinks. 6 years ago
LICENSE Remove symlinks. 6 years ago
README.md Remove symlinks. 6 years ago
package.json Remove symlinks. 6 years ago

README.md

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.