readline-sync/README.md

118 lines
3.8 KiB
Markdown
Raw Normal View History

2013-08-29 19:26:22 +02:00
# readlineSync
2013-08-29 12:55:23 +02:00
2013-08-29 19:26:22 +02:00
Synchronous [Readline](http://nodejs.org/api/readline.html) for interactively running.
The interface is used with process.stdin and process.stdout in order to accept user input.
2013-08-29 12:55:23 +02:00
## Example
```js
var readlineSync = require('readline-sync');
2013-08-29 19:26:22 +02:00
var answer = readlineSync.question('What is your favorite food? :');
2013-08-29 12:55:23 +02:00
console.log('Oh, so your favorite food is ' + answer);
```
## Installation
```
npm install readline-sync
2013-08-29 12:55:23 +02:00
```
## Usage
2013-08-29 19:26:22 +02:00
### setPrompt
```js
currentValue = readlineSync.setPrompt([prompt])
2013-08-29 19:26:22 +02:00
```
Sets the prompt, for example when you run `node` on the command line, you see `> `, which is node's prompt.
2014-07-13 07:24:37 +02:00
`prompt` may be string, or may not be (e.g. number, Date, Object, etc.). This is converted to string (i.e. `toString` method is called) before it is displayed every time.
2014-07-13 08:32:02 +02:00
For example: `[foo-directory]# ` like bash
```js
2014-07-13 06:58:11 +02:00
readlineSync.setPrompt({toString:
function() { return '[' + require('path').basename(process.cwd()) + ']# '; }})
```
2013-08-29 19:26:22 +02:00
### prompt
```js
2014-07-12 00:37:25 +02:00
line = readlineSync.prompt([options])
2013-08-29 19:26:22 +02:00
```
2014-07-12 00:37:25 +02:00
Readies readline for input from the user, putting the current `setPrompt` options on a new line, giving the user a new spot to write.
2014-07-13 07:24:37 +02:00
If `{noEchoBack: true}` is specified to `options`, echo back is avoided. It is used to hide the secret text (e.g. password) which is typed by user on screen.
2013-08-29 19:26:22 +02:00
### question
```js
line = readlineSync.question([query[, options]])
2013-08-29 19:26:22 +02:00
```
2014-07-12 00:37:25 +02:00
Displays the `query` to the user, and then returns the user's response after it has been typed.
2014-07-13 07:24:37 +02:00
`query` may be string, or may not be (e.g. number, Date, Object, etc.). This is converted to string (i.e. `toString` method is called) before it is displayed.
If `{noEchoBack: true}` is specified to `options`, echo back is avoided. It is used to hide the secret text (e.g. password) which is typed by user on screen.
2013-08-29 19:26:22 +02:00
### setEncoding
2013-08-29 12:55:23 +02:00
```js
currentValue = readlineSync.setEncoding([encoding])
2013-08-29 12:55:23 +02:00
```
2013-08-29 19:26:22 +02:00
Set the encoding method of input (user's response) and output (`prompt`). Defaults to 'utf8'.
2013-08-29 12:55:23 +02:00
2014-07-11 23:25:59 +02:00
### setPrint
```js
readlineSync.setPrint(funcPrint)
```
The specified Function is called when any texts are outputed (`prompt` and `question`). Two arguments the text which is outputed and `encoding` are passed. Defaults to `undefined`.
![sample](cl_01.png)
For example, this is used to pass plain texts to Logger, when prompt texts are colored.
```js
var readlineSync = require('readline-sync');
user, pw, cmd;
require('colors');
readlineSync.setPrint(function(display, encoding) {
logger.log(display.stripColors); // remove control characters
});
console.log('Your account required.'.grey);
user = readlineSync.question('USER NAME'.white.inverse + ': ');
2014-07-12 00:37:25 +02:00
pw = readlineSync.question('PASSWORD'.white.inverse + ': ', {noEchoBack: true});
2014-07-11 23:25:59 +02:00
// Authorization ...
console.log(('Welcome, ' + user + '!').green.bold);
readlineSync.setPrompt('> '.bold.red);
cmd = readlineSync.prompt();
```
2014-07-12 00:37:25 +02:00
## <a name ="note">Note</a>
+ The your Node and OS may not support interactively reading from stdin. The stdin interfaces are different by platforms.
2013-12-18 03:51:32 +01:00
If in those platforms, an error is thrown.
```js
try {
answer = readlineSync.question('What is your favorite food? :');
} catch (e) {
console.error(e);
process.exit(1);
}
```
2013-12-17 18:18:39 +01:00
2013-08-29 12:55:23 +02:00
## Release History
2014-07-13 06:55:17 +02:00
* 2014-07-13 v0.4.3 fixed #6: Crypto input data.
* 2014-07-12 v0.4.2 `setPrompt()` and `setEncoding()` return current value.
* 2014-07-12 v0.4.1 `setPrompt()` and `question()` accept the value which is not string too (e.g. number, Date, Object, etc.).
2014-07-12 00:37:25 +02:00
* 2014-07-12 v0.4.0 Add `options.noEchoBack`.
* 2014-07-12 v0.3.0 Add `setPrint()`.
* 2014-06-27 v0.2.3 Add alternative reading via shell on the environment which don't support interactively reading.
2013-12-18 03:51:32 +01:00
* 2013-12-18 v0.2.2 Error handle for the environment which don't support interactively reading from stdin.
2013-08-29 19:26:22 +02:00
* 2013-08-30 v0.2.0 Rewrite exporting methods.
2013-08-29 12:55:23 +02:00
* 2013-08-29 v0.1.0 Initial release.