2012-02-27 20:09:34 +01:00
|
|
|
# Readline
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `readline` module provides an interface for reading data from a [Readable][]
|
|
|
|
stream (such as [`process.stdin`]) one line at a time. It can be accessed using:
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
```js
|
|
|
|
const readline = require('readline');
|
|
|
|
```
|
|
|
|
|
|
|
|
The following simple example illustrates the basic use of the `readline` module.
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const readline = require('readline');
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
const rl = readline.createInterface({
|
|
|
|
input: process.stdin,
|
|
|
|
output: process.stdout
|
|
|
|
});
|
2012-03-27 00:21:25 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
rl.question('What do you think of Node.js? ', (answer) => {
|
|
|
|
// TODO: Log the answer in a database
|
2016-11-16 00:41:14 +01:00
|
|
|
console.log(`Thank you for your valuable feedback: ${answer}`);
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
rl.close();
|
|
|
|
});
|
|
|
|
```
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2017-05-20 22:15:58 +02:00
|
|
|
*Note*: Once this code is invoked, the Node.js application will not
|
2016-05-27 19:59:50 +02:00
|
|
|
terminate until the `readline.Interface` is closed because the interface
|
|
|
|
waits for data to be received on the `input` stream.
|
|
|
|
|
2012-02-27 20:09:34 +01:00
|
|
|
## Class: Interface
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.104
|
|
|
|
-->
|
2012-02-27 20:09:34 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
Instances of the `readline.Interface` class are constructed using the
|
|
|
|
`readline.createInterface()` method. Every instance is associated with a
|
|
|
|
single `input` [Readable][] stream and a single `output` [Writable][] stream.
|
|
|
|
The `output` stream is used to print prompts for user input that arrives on,
|
|
|
|
and is read from, the `input` stream.
|
2012-04-10 07:59:13 +02:00
|
|
|
|
2015-11-04 18:43:06 +01:00
|
|
|
### Event: 'close'
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.98
|
|
|
|
-->
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `'close'` event is emitted when one of the following occur:
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* The `rl.close()` method is called and the `readline.Interface` instance has
|
|
|
|
relinquished control over the `input` and `output` streams;
|
|
|
|
* The `input` stream receives its `'end'` event;
|
|
|
|
* The `input` stream receives `<ctrl>-D` to signal end-of-transmission (EOT);
|
|
|
|
* The `input` stream receives `<ctrl>-C` to signal `SIGINT` and there is no
|
|
|
|
`SIGINT` event listener registered on the `readline.Interface` instance.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The listener function is called without passing any arguments.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `readline.Interface` instance should be considered to be "finished" once
|
|
|
|
the `'close'` event is emitted.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
### Event: 'line'
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.98
|
|
|
|
-->
|
2011-08-08 00:56:04 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `'line'` event is emitted whenever the `input` stream receives an
|
|
|
|
end-of-line input (`\n`, `\r`, or `\r\n`). This usually occurs when the user
|
|
|
|
presses the `<Enter>`, or `<Return>` keys.
|
2011-08-08 00:56:04 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The listener function is called with a string containing the single line of
|
|
|
|
received input.
|
2011-08-08 00:56:04 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
For example:
|
2011-08-08 00:56:04 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2016-05-27 19:59:50 +02:00
|
|
|
rl.on('line', (input) => {
|
|
|
|
console.log(`Received: ${input}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
});
|
|
|
|
```
|
2011-08-08 00:56:04 +02:00
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
### Event: 'pause'
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.5
|
|
|
|
-->
|
2011-08-08 00:56:04 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `'pause'` event is emitted when one of the following occur:
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* The `input` stream is paused.
|
|
|
|
* The `input` stream is not paused and receives the `SIGCONT` event. (See
|
2016-09-10 02:43:52 +02:00
|
|
|
events [`SIGTSTP`][] and [`SIGCONT`][])
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The listener function is called without passing any arguments.
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
For example:
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
rl.on('pause', () => {
|
|
|
|
console.log('Readline paused.');
|
|
|
|
});
|
|
|
|
```
|
2012-02-15 15:08:26 +01:00
|
|
|
|
|
|
|
### Event: 'resume'
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.5
|
|
|
|
-->
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `'resume'` event is emitted whenever the `input` stream is resumed.
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The listener function is called without passing any arguments.
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
rl.on('resume', () => {
|
|
|
|
console.log('Readline resumed.');
|
|
|
|
});
|
|
|
|
```
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2015-11-04 18:43:06 +01:00
|
|
|
### Event: 'SIGCONT'
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.5
|
|
|
|
-->
|
2012-03-27 21:41:42 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `'SIGCONT'` event is emitted when a Node.js process previously moved into
|
|
|
|
the background using `<ctrl>-Z` (i.e. `SIGTSTP`) is then brought back to the
|
2017-02-22 15:42:46 +01:00
|
|
|
foreground using fg(1p).
|
2012-03-27 21:41:42 +02:00
|
|
|
|
2016-09-10 02:43:52 +02:00
|
|
|
If the `input` stream was paused *before* the `SIGTSTP` request, this event will
|
2016-05-27 19:59:50 +02:00
|
|
|
not be emitted.
|
2012-04-17 20:44:54 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The listener function is invoked without passing any arguments.
|
2012-04-17 20:44:54 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
For example:
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
rl.on('SIGCONT', () => {
|
|
|
|
// `prompt` will automatically resume the stream
|
|
|
|
rl.prompt();
|
|
|
|
});
|
|
|
|
```
|
2012-03-27 21:41:42 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
*Note*: The `'SIGCONT'` event is _not_ supported on Windows.
|
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
### Event: 'SIGINT'
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.0
|
|
|
|
-->
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `'SIGINT'` event is emitted whenever the `input` stream receives a
|
|
|
|
`<ctrl>-C` input, known typically as `SIGINT`. If there are no `'SIGINT'` event
|
|
|
|
listeners registered when the `input` stream receives a `SIGINT`, the `'pause'`
|
|
|
|
event will be emitted.
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The listener function is invoked without passing any arguments.
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
For example:
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
rl.on('SIGINT', () => {
|
2017-04-25 01:38:52 +02:00
|
|
|
rl.question('Are you sure you want to exit? ', (answer) => {
|
2016-01-17 18:39:07 +01:00
|
|
|
if (answer.match(/^y(es)?$/i)) rl.pause();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
```
|
2012-02-15 15:08:26 +01:00
|
|
|
|
|
|
|
### Event: 'SIGTSTP'
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.5
|
|
|
|
-->
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-09-10 02:43:52 +02:00
|
|
|
The `'SIGTSTP'` event is emitted when the `input` stream receives a `<ctrl>-Z`
|
2016-05-27 19:59:50 +02:00
|
|
|
input, typically known as `SIGTSTP`. If there are no `SIGTSTP` event listeners
|
|
|
|
registered when the `input` stream receives a `SIGTSTP`, the Node.js process
|
|
|
|
will be sent to the background.
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2017-02-22 15:42:46 +01:00
|
|
|
When the program is resumed using fg(1p), the `'pause'` and `SIGCONT` events
|
2016-05-27 19:59:50 +02:00
|
|
|
will be emitted. These can be used to resume the `input` stream.
|
2012-02-17 14:53:24 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `'pause'` and `'SIGCONT'` events will not be emitted if the `input` was
|
|
|
|
paused before the process was sent to the background.
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The listener function is invoked without passing any arguments.
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
For example:
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
rl.on('SIGTSTP', () => {
|
|
|
|
// This will override SIGTSTP and prevent the program from going to the
|
|
|
|
// background.
|
|
|
|
console.log('Caught SIGTSTP.');
|
|
|
|
});
|
|
|
|
```
|
2012-02-15 15:08:26 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
*Note*: The `'SIGTSTP'` event is _not_ supported on Windows.
|
2012-04-10 07:59:13 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
### rl.close()
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.98
|
|
|
|
-->
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `rl.close()` method closes the `readline.Interface` instance and
|
|
|
|
relinquishes control over the `input` and `output` streams. When called,
|
|
|
|
the `'close'` event will be emitted.
|
2016-01-17 18:39:07 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
### rl.pause()
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.4
|
|
|
|
-->
|
2016-01-17 18:39:07 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `rl.pause()` method pauses the `input` stream, allowing it to be resumed
|
|
|
|
later if necessary.
|
|
|
|
|
|
|
|
Calling `rl.pause()` does not immediately pause other events (including
|
|
|
|
`'line'`) from being emitted by the `readline.Interface` instance.
|
|
|
|
|
|
|
|
### rl.prompt([preserveCursor])
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.98
|
|
|
|
-->
|
|
|
|
|
|
|
|
* `preserveCursor` {boolean} If `true`, prevents the cursor placement from
|
|
|
|
being reset to `0`.
|
|
|
|
|
|
|
|
The `rl.prompt()` method writes the `readline.Interface` instances configured
|
|
|
|
`prompt` to a new line in `output` in order to provide a user with a new
|
|
|
|
location at which to provide input.
|
|
|
|
|
|
|
|
When called, `rl.prompt()` will resume the `input` stream if it has been
|
|
|
|
paused.
|
|
|
|
|
|
|
|
If the `readline.Interface` was created with `output` set to `null` or
|
|
|
|
`undefined` the prompt is not written.
|
|
|
|
|
|
|
|
### rl.question(query, callback)
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.3
|
|
|
|
-->
|
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
* `query` {string} A statement or query to write to `output`, prepended to the
|
2016-05-27 19:59:50 +02:00
|
|
|
prompt.
|
|
|
|
* `callback` {Function} A callback function that is invoked with the user's
|
|
|
|
input in response to the `query`.
|
|
|
|
|
|
|
|
The `rl.question()` method displays the `query` by writing it to the `output`,
|
|
|
|
waits for user input to be provided on `input`, then invokes the `callback`
|
|
|
|
function passing the provided input as the first argument.
|
|
|
|
|
|
|
|
When called, `rl.question()` will resume the `input` stream if it has been
|
|
|
|
paused.
|
|
|
|
|
|
|
|
If the `readline.Interface` was created with `output` set to `null` or
|
|
|
|
`undefined` the `query` is not written.
|
|
|
|
|
|
|
|
Example usage:
|
|
|
|
|
|
|
|
```js
|
2017-04-25 01:38:52 +02:00
|
|
|
rl.question('What is your favorite food? ', (answer) => {
|
2016-05-27 19:59:50 +02:00
|
|
|
console.log(`Oh, so your favorite food is ${answer}`);
|
2016-01-17 18:39:07 +01:00
|
|
|
});
|
|
|
|
```
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2016-06-06 22:51:52 +02:00
|
|
|
*Note*: The `callback` function passed to `rl.question()` does not follow the
|
|
|
|
typical pattern of accepting an `Error` object or `null` as the first argument.
|
2016-06-07 20:02:16 +02:00
|
|
|
The `callback` is called with the provided answer as the only argument.
|
2016-06-06 22:51:52 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
### rl.resume()
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.4
|
|
|
|
-->
|
2016-01-10 17:18:49 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `rl.resume()` method resumes the `input` stream if it has been paused.
|
2016-01-10 17:18:49 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
### rl.setPrompt(prompt)
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.98
|
|
|
|
-->
|
2016-01-10 17:18:49 +01:00
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
* `prompt` {string}
|
2016-01-10 17:18:49 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `rl.setPrompt()` method sets the prompt that will be written to `output`
|
|
|
|
whenever `rl.prompt()` is called.
|
|
|
|
|
|
|
|
### rl.write(data[, key])
|
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.98
|
|
|
|
-->
|
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
* `data` {string}
|
2016-05-27 19:59:50 +02:00
|
|
|
* `key` {Object}
|
|
|
|
* `ctrl` {boolean} `true` to indicate the `<ctrl>` key.
|
|
|
|
* `meta` {boolean} `true` to indicate the `<Meta>` key.
|
|
|
|
* `shift` {boolean} `true` to indicate the `<Shift>` key.
|
2017-02-04 16:15:33 +01:00
|
|
|
* `name` {string} The name of the a key.
|
2016-05-27 19:59:50 +02:00
|
|
|
|
|
|
|
The `rl.write()` method will write either `data` or a key sequence identified
|
|
|
|
by `key` to the `output`. The `key` argument is supported only if `output` is
|
|
|
|
a [TTY][] text terminal.
|
|
|
|
|
|
|
|
If `key` is specified, `data` is ignored.
|
|
|
|
|
|
|
|
When called, `rl.write()` will resume the `input` stream if it has been
|
|
|
|
paused.
|
|
|
|
|
|
|
|
If the `readline.Interface` was created with `output` set to `null` or
|
|
|
|
`undefined` the `data` and `key` are not written.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
rl.write('Delete this!');
|
|
|
|
// Simulate Ctrl+u to delete the line written previously
|
2017-06-01 01:07:25 +02:00
|
|
|
rl.write(null, { ctrl: true, name: 'u' });
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2016-01-10 17:18:49 +01:00
|
|
|
|
2016-08-27 06:36:43 +02:00
|
|
|
*Note*: The `rl.write()` method will write the data to the `readline`
|
|
|
|
Interface's `input` *as if it were provided by the user*.
|
|
|
|
|
2014-01-23 12:35:50 +01:00
|
|
|
## readline.clearLine(stream, dir)
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2014-01-23 12:35:50 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* `stream` {Writable}
|
|
|
|
* `dir` {number}
|
|
|
|
* `-1` - to the left from cursor
|
|
|
|
* `1` - to the right from cursor
|
|
|
|
* `0` - the entire line
|
|
|
|
|
|
|
|
The `readline.clearLine()` method clears current line of given [TTY][] stream
|
|
|
|
in a specified direction identified by `dir`.
|
2014-01-23 12:35:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
## readline.clearScreenDown(stream)
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2014-01-23 12:35:50 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* `stream` {Writable}
|
|
|
|
|
|
|
|
The `readline.clearScreenDown()` method clears the given [TTY][] stream from
|
|
|
|
the current position of the cursor down.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
|
|
|
## readline.createInterface(options)
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.1.98
|
2017-02-21 23:38:48 +01:00
|
|
|
changes:
|
|
|
|
- version: v6.3.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/7125
|
|
|
|
description: The `prompt` option is supported now.
|
|
|
|
- version: v6.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/6352
|
|
|
|
description: The `historySize` option can be `0` now.
|
2016-05-26 17:39:07 +02:00
|
|
|
-->
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* `options` {Object}
|
|
|
|
* `input` {Readable} The [Readable][] stream to listen to. This option is
|
|
|
|
*required*.
|
|
|
|
* `output` {Writable} The [Writable][] stream to write readline data to.
|
|
|
|
* `completer` {Function} An optional function used for Tab autocompletion.
|
|
|
|
* `terminal` {boolean} `true` if the `input` and `output` streams should be
|
|
|
|
treated like a TTY, and have ANSI/VT100 escape codes written to it.
|
|
|
|
Defaults to checking `isTTY` on the `output` stream upon instantiation.
|
|
|
|
* `historySize` {number} maximum number of history lines retained. To disable
|
|
|
|
the history set this value to `0`. Defaults to `30`. This option makes sense
|
|
|
|
only if `terminal` is set to `true` by the user or by an internal `output`
|
|
|
|
check, otherwise the history caching mechanism is not initialized at all.
|
2016-06-03 03:31:23 +02:00
|
|
|
* `prompt` - the prompt string to use. Default: `'> '`
|
2016-08-15 14:07:01 +02:00
|
|
|
* `crlfDelay` {number} If the delay between `\r` and `\n` exceeds
|
|
|
|
`crlfDelay` milliseconds, both `\r` and `\n` will be treated as separate
|
|
|
|
end-of-line input. Default to `100` milliseconds.
|
2017-06-06 14:22:22 +02:00
|
|
|
`crlfDelay` will be coerced to a number no less than `100`. It can be set to
|
|
|
|
`Infinity`, in which case `\r` followed by `\n` will always be considered a
|
|
|
|
single newline.
|
2017-03-20 23:30:41 +01:00
|
|
|
* `removeHistoryDuplicates` {boolean} If `true`, when a new input line added
|
|
|
|
to the history list duplicates an older one, this removes the older line
|
|
|
|
from the list. Defaults to `false`.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `readline.createInterface()` method creates a new `readline.Interface`
|
|
|
|
instance.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
For example:
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
```js
|
|
|
|
const readline = require('readline');
|
|
|
|
const rl = readline.createInterface({
|
|
|
|
input: process.stdin,
|
|
|
|
output: process.stdout
|
|
|
|
});
|
|
|
|
```
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
Once the `readline.Interface` instance is created, the most common case is to
|
|
|
|
listen for the `'line'` event:
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
```js
|
|
|
|
rl.on('line', (line) => {
|
|
|
|
console.log(`Received: ${line}`);
|
|
|
|
});
|
|
|
|
```
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
If `terminal` is `true` for this instance then the `output` stream will get
|
|
|
|
the best compatibility if it defines an `output.columns` property and emits
|
|
|
|
a `'resize'` event on the `output` if or when the columns ever change
|
|
|
|
([`process.stdout`][] does this automatically when it is a TTY).
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
### Use of the `completer` Function
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2017-04-23 02:12:22 +02:00
|
|
|
The `completer` function takes the current line entered by the user
|
|
|
|
as an argument, and returns an Array with 2 entries:
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* An Array with matching entries for the completion.
|
|
|
|
* The substring that was used for the matching.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
For instance: `[[substr1, substr2, ...], originalsubstring]`.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
function completer(line) {
|
2016-11-16 00:41:14 +01:00
|
|
|
const completions = '.help .error .exit .quit .q'.split(' ');
|
2017-04-25 01:38:52 +02:00
|
|
|
const hits = completions.filter((c) => c.startsWith(line));
|
2016-01-17 18:39:07 +01:00
|
|
|
// show all completions if none found
|
2016-07-15 07:41:29 +02:00
|
|
|
return [hits.length ? hits : completions, line];
|
2016-01-17 18:39:07 +01:00
|
|
|
}
|
|
|
|
```
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
The `completer` function can be called asynchronously if it accepts two
|
|
|
|
arguments:
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
function completer(linePartial, callback) {
|
|
|
|
callback(null, [['123'], linePartial]);
|
|
|
|
}
|
|
|
|
```
|
2015-11-04 18:43:06 +01:00
|
|
|
|
|
|
|
## readline.cursorTo(stream, x, y)
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* `stream` {Writable}
|
|
|
|
* `x` {number}
|
|
|
|
* `y` {number}
|
|
|
|
|
|
|
|
The `readline.cursorTo()` method moves cursor to the specified position in a
|
|
|
|
given [TTY][] `stream`.
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-13 09:54:31 +02:00
|
|
|
## readline.emitKeypressEvents(stream[, interface])
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2016-04-03 02:55:17 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* `stream` {Readable}
|
|
|
|
* `interface` {readline.Interface}
|
|
|
|
|
|
|
|
The `readline.emitKeypressEvents()` method causes the given [Writable][]
|
|
|
|
`stream` to begin emitting `'keypress'` events corresponding to received input.
|
|
|
|
|
2016-05-13 09:54:31 +02:00
|
|
|
Optionally, `interface` specifies a `readline.Interface` instance for which
|
|
|
|
autocompletion is disabled when copy-pasted input is detected.
|
2016-04-03 02:55:17 +02:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
If the `stream` is a [TTY][], then it must be in raw mode.
|
|
|
|
|
2016-11-03 17:23:57 +01:00
|
|
|
*Note*: This is automatically called by any readline instance on its `input`
|
|
|
|
if the `input` is a terminal. Closing the `readline` instance does not stop
|
|
|
|
the `input` from emitting `'keypress'` events.
|
|
|
|
|
2016-05-07 09:53:05 +02:00
|
|
|
```js
|
|
|
|
readline.emitKeypressEvents(process.stdin);
|
2016-05-27 19:59:50 +02:00
|
|
|
if (process.stdin.isTTY)
|
2016-05-07 09:53:05 +02:00
|
|
|
process.stdin.setRawMode(true);
|
|
|
|
```
|
|
|
|
|
2015-11-04 18:43:06 +01:00
|
|
|
## readline.moveCursor(stream, dx, dy)
|
2016-05-26 17:39:07 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.7
|
|
|
|
-->
|
2015-11-04 18:43:06 +01:00
|
|
|
|
2016-05-27 19:59:50 +02:00
|
|
|
* `stream` {Writable}
|
|
|
|
* `dx` {number}
|
2017-02-04 16:15:33 +01:00
|
|
|
* `dy` {number}
|
2016-05-27 19:59:50 +02:00
|
|
|
|
|
|
|
The `readline.moveCursor()` method moves the cursor *relative* to its current
|
|
|
|
position in a given [TTY][] `stream`.
|
|
|
|
|
|
|
|
|
|
|
|
## Example: Tiny CLI
|
|
|
|
|
|
|
|
The following example illustrates the use of `readline.Interface` class to
|
|
|
|
implement a small command-line interface:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const readline = require('readline');
|
2016-06-03 03:31:23 +02:00
|
|
|
const rl = readline.createInterface({
|
|
|
|
input: process.stdin,
|
|
|
|
output: process.stdout,
|
|
|
|
prompt: 'OHAI> '
|
|
|
|
});
|
2016-05-27 19:59:50 +02:00
|
|
|
|
|
|
|
rl.prompt();
|
|
|
|
|
|
|
|
rl.on('line', (line) => {
|
2017-04-21 16:38:31 +02:00
|
|
|
switch (line.trim()) {
|
2016-05-27 19:59:50 +02:00
|
|
|
case 'hello':
|
|
|
|
console.log('world!');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.log(`Say what? I might have heard '${line.trim()}'`);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rl.prompt();
|
|
|
|
}).on('close', () => {
|
|
|
|
console.log('Have a great day!');
|
|
|
|
process.exit(0);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
## Example: Read File Stream Line-by-Line
|
|
|
|
|
|
|
|
A common use case for `readline` is to consume input from a filesystem
|
|
|
|
[Readable][] stream one line at a time, as illustrated in the following
|
|
|
|
example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const readline = require('readline');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const rl = readline.createInterface({
|
|
|
|
input: fs.createReadStream('sample.txt')
|
|
|
|
});
|
|
|
|
|
|
|
|
rl.on('line', (line) => {
|
2016-11-16 00:41:14 +01:00
|
|
|
console.log(`Line from file: ${line}`);
|
2016-05-27 19:59:50 +02:00
|
|
|
});
|
|
|
|
```
|
2015-11-28 00:30:32 +01:00
|
|
|
|
2017-05-08 18:30:13 +02:00
|
|
|
[`SIGCONT`]: readline.html#readline_event_sigcont
|
|
|
|
[`SIGTSTP`]: readline.html#readline_event_sigtstp
|
2015-11-28 00:30:32 +01:00
|
|
|
[`process.stdin`]: process.html#process_process_stdin
|
|
|
|
[`process.stdout`]: process.html#process_process_stdout
|
2017-02-22 10:47:57 +01:00
|
|
|
[Readable]: stream.html#stream_readable_streams
|
2016-05-27 19:59:50 +02:00
|
|
|
[TTY]: tty.html
|
2017-05-08 18:30:13 +02:00
|
|
|
[Writable]: stream.html#stream_writable_streams
|