securityos/node_modules/xterm-addon-webgl
Berkeley 927854894b First commit 2024-09-06 12:32:35 -03:00
..
lib First commit 2024-09-06 12:32:35 -03:00
out First commit 2024-09-06 12:32:35 -03:00
src First commit 2024-09-06 12:32:35 -03:00
typings First commit 2024-09-06 12:32:35 -03:00
LICENSE First commit 2024-09-06 12:32:35 -03:00
README.md First commit 2024-09-06 12:32:35 -03:00
package.json First commit 2024-09-06 12:32:35 -03:00

README.md

xterm-addon-webgl

An addon for xterm.js that enables a WebGL-based renderer. This addon requires xterm.js v4+.

⚠️ This is an experimental addon that is missing some features and may be unstable ⚠️

Install

npm install --save xterm-addon-webgl

Usage

import { Terminal } from 'xterm';
import { WebglAddon } from 'xterm-addon-webgl';

const terminal = new Terminal();
terminal.loadAddon(new WebglAddon());

See the full API for more advanced usage.