read

WebJar for read

Лицензия

Лицензия

ISC
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

read
Последняя версия

Последняя версия

1.0.7
Дата

Дата

Тип

Тип

jar
Описание

Описание

read
WebJar for read
Ссылка на сайт

Ссылка на сайт

http://webjars.org

Скачать read

Имя Файла Размер
read-1.0.7.pom
read-1.0.7.jar 5 KB
read-1.0.7-sources.jar 22 bytes
read-1.0.7-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/read/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>read</artifactId>
    <version>1.0.7</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/read/
implementation 'org.webjars.npm:read:1.0.7'
// https://jarcasting.com/artifacts/org.webjars.npm/read/
implementation ("org.webjars.npm:read:1.0.7")
'org.webjars.npm:read:jar:1.0.7'
<dependency org="org.webjars.npm" name="read" rev="1.0.7">
  <artifact name="read" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='read', version='1.0.7')
)
libraryDependencies += "org.webjars.npm" % "read" % "1.0.7"
[org.webjars.npm/read "1.0.7"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : mute-stream jar [0.0.4,0.1)

Модули Проекта

Данный проект не имеет модулей.

read

For reading user input from stdin.

Similar to the readline builtin's question() method, but with a few more features.

USAGE

var read = require("read")
read(options, callback)

The callback gets called with either the user input, or the default specified, or an error, as callback(error, result, isDefault) node style.

OPTIONS

Every option is optional.

  • prompt What to write to stdout before reading input.
  • silent Don't echo the output as the user types it.
  • replace Replace silenced characters with the supplied character value.
  • timeout Number of ms to wait for user input before giving up.
  • default The default value if the user enters nothing.
  • edit Allow the user to edit the default value.
  • terminal Treat the output as a TTY, whether it is or not.
  • input Readable stream to get input data from. (default process.stdin)
  • output Writeable stream to write prompts to. (default: process.stdout)

If silent is true, and the input is a TTY, then read will set raw mode, and read character by character.

COMPATIBILITY

This module works sort of with node 0.6. It does not work with node versions less than 0.6. It is best on node 0.8.

On node version 0.6, it will remove all listeners on the input stream's data and keypress events, because the readline module did not fully clean up after itself in that version of node, and did not make it possible to clean up after it in a way that has no potential for side effects.

Additionally, some of the readline options (like terminal) will not function in versions of node before 0.8, because they were not implemented in the builtin readline module.

CONTRIBUTING

Patches welcome.

org.webjars.npm

npm

node package manager

Версии библиотеки

Версия
1.0.7