Skip to content

Tyriar/xterm-webfont

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

About

xterm-webfont is an xterm.js addon for ensuring that webfonts load correctly before attempting to draw characters in an xterm instance. It is only necessary when using xterm 3.0 and above. Prior to 3.0, xterm drew characters directly to the DOM. Now that xterm draws characters to a canvas element, you cannot rely on the browser to eventually load and redraw needed webfonts. xterm-webfont will attempt to delay opening the xterm instance until both the normal and bold variants of the selected font family become available. It does so using the FontFaceObserver library.

Usage

xterm-webfont is a CommonJS module available on NPM or Yarn. Install it and import (or require) it like so:

import * as WebfontLoader from 'xterm-webfont'
// alternatively, var WebfontLoader = require('xterm-webfont')
Terminal.applyAddon(WebfontLoader)

Then, where you would normally initialize xterm like so:

const term = new Terminal({ fontFamily: 'Roboto Mono' })
term.open(myElement)

do

const term = new Terminal({ fontFamily: 'Roboto Mono' })
term.loadWebfontAndOpen(myElement)

Details

The default timeout of 3 seconds from FontFaceObserver is used. If the font fails to load both variants within that time, the Courier font is used instead.

loadWebfontAndOpen returns a promise that resolves when the terminal opens. The resolution value of this promise is the instance of the terminal.

About

xterm.js addon for ensuring webfonts load

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%