You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
795 B

## TTY
Use `require('tty')` to access this module.
Example:
var tty = require('tty');
process.stdin.resume();
tty.setRawMode(true);
process.stdin.on('keypress', function(char, key) {
if (key && key.ctrl && key.name == 'c') {
console.log('graceful exit');
process.exit()
}
});
### tty.isatty(fd)
Returns `true` or `false` depending on if the `fd` is associated with a
terminal.
### tty.setRawMode(mode)
14 years ago
`mode` should be `true` or `false`. This sets the properties of the current
process's stdin fd to act either as a raw device or default.
### tty.setWindowSize(fd, row, col)
`ioctl`s the window size settings to the file descriptor.
### tty.getWindowSize(fd)
Returns `[row, col]` for the TTY associated with the file descriptor.