ansiterm
About
ansiterm
is a library for manipulating terminal input and output.
Installation
npm install ansiterm
ANSITerm
This library provides a main object for interacting with the terminal. Besides
the methods on it, instances of the object also function as an EventEmitter
to
inform the consumer when keys are pressed or the window gets resized.
ANSITerm#clear()
Clear the screen.
ANSITerm#cursor(show)
Enable or disable the cursor by passing true or false respectively.
ANSITerm#size()
Returns an object indicating the terminal size:
h
, the number of rows of the terminalw
, the number of columns of the terminal
ANSITerm#softReset()
Resets the terminal state.
ANSITerm#moveto(x, y)
Move the cursor to a new location.
Event: "resize"
Indicates that the terminal has been resized. Emits the new size, as
represented by ANSITerm#size()
.
Event: "keypress"
Emitted when a normal key has been pressed. Passes the string representation of
the character pressed (e.g., "c"
, "C"
, "!"
, etc.).
Event: "control"
Emitted when a control character has been pressed, e.g. ^C
. An object
is passed with the event, containing the following fields:
key
, a representation of the keys pressed, e.g. ^[
for escape, ^C
for
control-C, ^H
for backspace, ^I
for tab, etc.ascii
, the ASCII name of the control character (e.g. NUL
, SOH
, etc.)
Event: "special"
Emitted for special keys on the keyboard. An string is passed with the
event, indicating which key was pressed:
- Home (
"home"
) - Insert (
"insert"
) - Delete (
"delete"
) - End (
"end"
) - Page Up (
"prior"
) - Page Down (
"next"
) - Arrow key (
"up"
, "down"
, "right"
, or "left"
) - Reverse Tab, usually Shift+Tab (
"reverse-tab"
)
Additionally, an object is passed with the following fields:
alt
, indicating if alt was held while pressing the keyshift
, indicating if shift was held while pressing the keycontrol
, indicating if control was held while pressing the keymeta
, indicating if meta (super) was held while pressing the key
Note that terminals don't support the full matrix of possible combinations,
and will ignore shift or control in some cases.
License
MIT