Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anseki/readline-sync

Synchronous Readline for interactively running to have a conversation with the user via a console(TTY).
https://github.com/anseki/readline-sync

block command conversation interactive javascript keyboard password prompt question readline repl synchronous tty wait

Last synced: 4 days ago
JSON representation

Synchronous Readline for interactively running to have a conversation with the user via a console(TTY).

Awesome Lists containing this project

README

        

# readlineSync

## Deprecated Methods and Options

The readlineSync current version is fully compatible with older version.
The following methods and options are deprecated.

### `setPrint` method

Use the [`print`](README.md#basic_options-print) option.
For the [Default Options](README.md#basic_options), use:

```js
readlineSync.setDefaultOptions({print: value});
```

instead of:

```js
readlineSync.setPrint(value);
```

### `setPrompt` method

Use the [`prompt`](README.md#basic_options-prompt) option.
For the [Default Options](README.md#basic_options), use:

```js
readlineSync.setDefaultOptions({prompt: value});
```

instead of:

```js
readlineSync.setPrompt(value);
```

### `setEncoding` method

Use the [`encoding`](README.md#basic_options-encoding) option.
For the [Default Options](README.md#basic_options), use:

```js
readlineSync.setDefaultOptions({encoding: value});
```

instead of:

```js
readlineSync.setEncoding(value);
```

### `setMask` method

Use the [`mask`](README.md#basic_options-mask) option.
For the [Default Options](README.md#basic_options), use:

```js
readlineSync.setDefaultOptions({mask: value});
```

instead of:

```js
readlineSync.setMask(value);
```

### `setBufferSize` method

Use the [`bufferSize`](README.md#basic_options-buffersize) option.
For the [Default Options](README.md#basic_options), use:

```js
readlineSync.setDefaultOptions({bufferSize: value});
```

instead of:

```js
readlineSync.setBufferSize(value);
```

### `noEchoBack` option

Use [`hideEchoBack`](README.md#basic_options-hideechoback) option instead of it.

### `noTrim` option

Use [`keepWhitespace`](README.md#basic_options-keepwhitespace) option instead of it.