2011-04-20 18:04:42 +02:00
|
|
|
## Readline
|
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
To use this module, do `require('readline')`. Readline allows reading of a
|
|
|
|
stream (such as STDIN) on a line-by-line basis.
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
Note that once you've invoked this module, your node program will not
|
2012-02-15 15:08:26 +01:00
|
|
|
terminate until you've paused the interface. Here's how to allow your
|
|
|
|
program to gracefully pause:
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
var rl = require('readline');
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-09-02 21:53:49 +02:00
|
|
|
var i = rl.createInterface(process.stdin, process.stdout, null);
|
2011-08-08 00:56:04 +02:00
|
|
|
i.question("What do you think of node.js?", function(answer) {
|
|
|
|
// TODO: Log the answer in a database
|
|
|
|
console.log("Thank you for your valuable feedback.");
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
i.pause();
|
2011-08-08 00:56:04 +02:00
|
|
|
});
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
### rl.createInterface(input, output, completer)
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
Takes two streams and creates a readline interface. The `completer` function
|
|
|
|
is used for autocompletion. When given a substring, it returns `[[substr1,
|
|
|
|
substr2, ...], originalsubstring]`.
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-10-11 21:14:00 +02:00
|
|
|
Also `completer` can be run in async mode if it accepts two arguments:
|
|
|
|
|
|
|
|
function completer(linePartial, callback) {
|
|
|
|
callback(null, [['123'], linePartial]);
|
|
|
|
}
|
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
`createInterface` is commonly used with `process.stdin` and
|
|
|
|
`process.stdout` in order to accept user input:
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
var readline = require('readline'),
|
|
|
|
rl = readline.createInterface(process.stdin, process.stdout);
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
### rl.setPrompt(prompt, length)
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
Sets the prompt, for example when you run `node` on the command line, you see
|
|
|
|
`> `, which is node's prompt.
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
### rl.prompt()
|
|
|
|
|
|
|
|
Readies readline for input from the user, putting the current `setPrompt`
|
|
|
|
options on a new line, giving the user a new spot to write.
|
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
This will also resume the `in` stream used with `createInterface` if it has
|
|
|
|
been paused.
|
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
<!-- ### rl.getColumns() Not available? -->
|
|
|
|
|
|
|
|
### rl.question(query, callback)
|
|
|
|
|
|
|
|
Prepends the prompt with `query` and invokes `callback` with the user's
|
|
|
|
response. Displays the query to the user, and then invokes `callback` with the
|
|
|
|
user's response after it has been typed.
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
This will also resume the `in` stream used with `createInterface` if it has
|
|
|
|
been paused.
|
|
|
|
|
2011-04-20 18:04:42 +02:00
|
|
|
Example usage:
|
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
interface.question('What is your favorite food?', function(answer) {
|
|
|
|
console.log('Oh, so your favorite food is ' + answer);
|
|
|
|
});
|
|
|
|
|
|
|
|
### rl.pause()
|
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
Pauses the readline `in` stream, allowing it to be resumed later if needed.
|
2011-08-08 00:56:04 +02:00
|
|
|
|
|
|
|
### rl.resume()
|
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
Resumes the readline `in` stream.
|
2011-08-08 00:56:04 +02:00
|
|
|
|
|
|
|
### rl.write()
|
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
Writes to tty.
|
|
|
|
|
|
|
|
This will also resume the `in` stream used with `createInterface` if it has
|
|
|
|
been paused.
|
2011-08-08 00:56:04 +02:00
|
|
|
|
|
|
|
### Event: 'line'
|
|
|
|
|
|
|
|
`function (line) {}`
|
|
|
|
|
|
|
|
Emitted whenever the `in` stream receives a `\n`, usually received when the
|
|
|
|
user hits enter, or return. This is a good hook to listen for user input.
|
|
|
|
|
|
|
|
Example of listening for `line`:
|
|
|
|
|
|
|
|
rl.on('line', function (cmd) {
|
|
|
|
console.log('You just typed: '+cmd);
|
|
|
|
});
|
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
### Event: 'pause'
|
2011-08-08 00:56:04 +02:00
|
|
|
|
|
|
|
`function () {}`
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
Emitted whenever the `in` stream is paused or receives `^D`, respectively known
|
|
|
|
as `EOT`. This event is also called if there is no `SIGINT` event listener
|
|
|
|
present when the `in` stream receives a `^C`, respectively known as `SIGINT`.
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
Also emitted whenever the `in` stream is not paused and receives the `SIGCONT`
|
|
|
|
event. (See events `SIGTSTP` and `SIGCONT`)
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
Example of listening for `pause`:
|
|
|
|
|
|
|
|
rl.on('pause', function() {
|
|
|
|
console.log('Readline paused.');
|
|
|
|
});
|
|
|
|
|
|
|
|
### Event: 'resume'
|
|
|
|
|
|
|
|
`function () {}`
|
|
|
|
|
|
|
|
Emitted whenever the `in` stream is resumed.
|
|
|
|
|
|
|
|
Example of listening for `resume`:
|
|
|
|
|
|
|
|
rl.on('resume', function() {
|
|
|
|
console.log('Readline resumed.');
|
2011-08-08 00:56:04 +02:00
|
|
|
});
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
### Event: 'SIGINT'
|
|
|
|
|
|
|
|
`function () {}`
|
|
|
|
|
|
|
|
Emitted whenever the `in` stream receives a `^C`, respectively known as
|
|
|
|
`SIGINT`. If there is no `SIGINT` event listener present when the `in` stream
|
|
|
|
receives a `SIGINT`, `pause` will be triggered.
|
|
|
|
|
|
|
|
Example of listening for `SIGINT`:
|
|
|
|
|
|
|
|
rl.on('SIGINT', function() {
|
|
|
|
rl.question('Are you sure you want to exit?', function(answer) {
|
|
|
|
if (answer.match(/^y(es)?$/i)) rl.pause();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
### Event: 'SIGTSTP'
|
|
|
|
|
|
|
|
`function () {}`
|
|
|
|
|
2012-02-17 14:53:24 +01:00
|
|
|
**This does not work on Windows.**
|
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
Emitted whenever the `in` stream receives a `^Z`, respectively known as
|
|
|
|
`SIGTSTP`. If there is no `SIGTSTP` event listener present when the `in` stream
|
|
|
|
receives a `SIGTSTP`, the program will be sent to the background.
|
|
|
|
|
|
|
|
When the program is resumed with `fg`, the `pause` and `SIGCONT` events will be
|
|
|
|
emitted. You can use either to resume the stream.
|
|
|
|
|
|
|
|
The `pause` and `SIGCONT` events will not be triggered if the stream was paused
|
|
|
|
before the program was sent to the background.
|
|
|
|
|
|
|
|
Example of listening for `SIGTSTP`:
|
|
|
|
|
|
|
|
rl.on('SIGTSTP', function() {
|
|
|
|
// This will override SIGTSTP and prevent the program from going to the
|
|
|
|
// background.
|
|
|
|
console.log('Caught SIGTSTP.');
|
|
|
|
});
|
|
|
|
|
|
|
|
### Event: 'SIGCONT'
|
|
|
|
|
|
|
|
`function () {}`
|
|
|
|
|
2012-02-17 14:53:24 +01:00
|
|
|
**This does not work on Windows.**
|
|
|
|
|
2012-02-15 15:08:26 +01:00
|
|
|
Emitted whenever the `in` stream is sent to the background with `^Z`,
|
|
|
|
respectively known as `SIGTSTP`, and then continued with `fg`. This event only
|
|
|
|
emits if the stream was not paused before sending the program to the
|
|
|
|
background.
|
|
|
|
|
|
|
|
Example of listening for `SIGCONT`:
|
|
|
|
|
|
|
|
rl.on('SIGCONT', function() {
|
|
|
|
// `prompt` will automatically resume the stream
|
|
|
|
rl.prompt();
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
Here's an example of how to use all these together to craft a tiny command
|
|
|
|
line interface:
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
var readline = require('readline'),
|
2012-02-15 15:08:26 +01:00
|
|
|
rl = readline.createInterface(process.stdin, process.stdout);
|
|
|
|
|
|
|
|
rl.setPrompt('OHAI> ');
|
|
|
|
rl.prompt();
|
2011-04-20 18:04:42 +02:00
|
|
|
|
2011-08-08 00:56:04 +02:00
|
|
|
rl.on('line', function(line) {
|
|
|
|
switch(line.trim()) {
|
|
|
|
case 'hello':
|
|
|
|
console.log('world!');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
console.log('Say what? I might have heard `' + line.trim() + '`');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
rl.prompt();
|
2012-02-15 15:08:26 +01:00
|
|
|
}).on('pause', function() {
|
2011-08-08 00:56:04 +02:00
|
|
|
console.log('Have a great day!');
|
|
|
|
process.exit(0);
|
|
|
|
});
|
2011-04-20 18:04:42 +02:00
|
|
|
|