XTerm Widget for Blessed Curses Environment
npm install blessed-xterm
Blessed-XTerm
=============
XTerm Widget for Blessed Curses Environment


Abstract
--------
This is an XTerm emulating terminal widget for the awesome
Blessed Curses environment of
Node.js. It allows the execution of interactive terminal programs in a
Blessed Box-derived widget while providing a full-featured and fully
compatible emulated XTerm rendering environment to those programs.
Blessed XTerm is actually a more modern variant of the Terminal widget
as shipped with the Blessed Curses environment. The difference to the
regular Terminal widget is: (1) the Blessed XTerm widget uses the
newer and more portable node-pty
module, instead of the ancient pty.js
module, for Pseudo TTY management, (2) it uses the newer and more
sophisticated XTerm.js module, instead of the
ancient Term.js module, for XTerm
emulation, (3) it provides full scrollback buffer support and (4) it
supports starting and stopping multiple commands while the widget is
active.
To see Blessed XTerm in action, check out stmux,
the utility for which Blessed XTerm originally was developed for.
Example
-------
Installation
------------
```
$ npm install blessed blessed-xterm
NOTICE: The node-pty dependency module is a Node.js module withnpm install
a native C/C++ component. For this a C/C++ compiler environment is
required during . For macOS, ensure you have Apple XCodeXcode
and its Command-Line Tools installed (you can find them in XCode
under menu / Preferences / Downloads). For Windows,npm install --global --production
you need Microsoft's Visual C/C++ Build Tools installed (you can
conveniently install them with
windows-build-tools from an elevated shell).
Usage
-----
The Blessed XTerm widget supports all configuration options of
Blessed Box,
Blessed Element,
Blessed Node and
Node.js EventEmitter,
plus the following ones:
- shell (default: process.env.SHELL || "sh"):args
The shell to execute.
- (default: []):env
The arguments for the shell to execute.
- (default: process.env):cwd
The environment variables for the shell to execute.
- (default: process.cwd()):cursorType
The current working directory for the shell to execute.
- (default: block):block
The type of cursor. Either , underline or line.scrollback
- (default: 1000):controlKey
The amount of lines for scrolling back.
- (default: C-w):ignoreKeys
The control key to enter the scrolling mode.
- (default: []):mousePassthrough
The keys to ignore.
- (default: false):style.scrolling.border.fg
The mouse events are captured and passed-through to
the XTerm emulation as mouse key sequences.
- (default: red):
The color of the border during scrolling mode.
The Blessed XTerm widget supports all methods of
Blessed Box,
Blessed Element,
Blessed Node and
Node.js EventEmitter,
plus the following ones:
- enableInput(enable: Boolean): Void:injectInput(input: String): Void
Enable or disable the input handling.
- :write(output: String): Void
Inject input into the terminal as it was typed by the user.
The input is actually sent to the executed program.
- :getScrollHeight(): Number
Write output to the terminal as it was output by the executed program.
The output is just displayed.
- :getScroll(): Number
Get the actual height in lines of the scrolling area.
- :setScroll(index: Number): Void
Get the current scroll index in lines.
- :scrollTo(index: Number): Void
Scroll the content to an absolute index in lines (same as scrollTo).
- :getScrollPerc(): Number
Scroll the content to an absolute index in lines (same as setScroll).
- :setScrollPerc(percent: Number): Void
Get the current scroll index in percentage (0-100).
- :scroll(offset: Number): Void
Set the current scroll index in percentage (0-100).
- :resetScroll(): Void
Scroll the content by a relative offset of lines.
- :spawn (shell: String, args: String[], cwd?: String, env?: Object): Void
Reset the scrolling by scrolling to the bottom of the scroll buffer.
- :terminate(): Void
Spawn/run a command, optionally first terminating a currently running one.
- :kill(): Void
Terminate a currently running/spawned program.
- :
Tear down the widget.
The Blessed XTerm widget supports all events of
Blessed Box,
Blessed Element,
Blessed Node and
Node.js EventEmitter,
plus the following ones:
- title (title: String):title
The program output a sequence to update the terminal with .beep
- ():scrolling-start
The program output a sequence to beep the terminal.
- ():scrolling-end
The scrolling mode was started.
- ():scroll
The scrolling mode was ended.
- ():exit
The content was scrolled.
- (code: Number):code
The spawned program terminated with .spawn()
Usually used in combination with the Blessed XTerm method.update
- ():screenshot()` method.
The rendering engine just updated the widget content.
Usually used in combination with the Blessed Element
License
-------
Copyright (c) 2017-2024 Dr. Ralf S. Engelschall (http://engelschall.com/)
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.