XtermJs
UI Extension
xterm.js is a terminal emulator component for the web, used by VS Code and Hyper. Supports Unicode, theming, addons, and GPU-accelerated rendering via WebGL.
Status
Testing
Supported Version
TBD
Licensing
Open Source
Priority
Rank #13
KEY FEATURES
Terminal emulation
Unicode support
WebGL rendering
Theming
Search addon
Web links addon
Fit addon
Usage Example
Here's how you'll use XtermJs with Oorian once the extension is available:
Java
// Create and configure XtermJs component
XtermJs component = new XtermJs();
component.setWidth("100%");
component.setHeight("400px");
// Configure component options
component.setEnabled(true);
// Register for events using Oorian's event model
component.registerForEvent(this, XtermJsEvent.class);
// Add to your page
container.addElement(component);Note: This is a preview of the expected API. The actual implementation may vary slightly when released.