An addon for xterm.js that enabled web links. This addon requires xterm.js 3.14+.
npm install --save xterm-addon-web-links
import { Terminal } from 'xterm';
import { WebLinksAddon } from 'xterm-addon-web-links';
const terminal = new Terminal();
terminal.loadAddon(new WebLinksAddon());
You can also specify a custom handler and options, see the API for more details.