2.0.4 • Published 2 days ago

askcharacter v2.0.4

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 days ago

askcharacter

Prompt for a single character

import askcharacter from 'askcharacter';

console.log('Please enter a character:');
const char = await askcharacter(process.stdin);
console.log('You entered the following askcharacter:', char.toString());

The stream passed to askcharacter can be any kind of Readable stream. If it is a TTY, askcharacter will temporarily remove all other 'data' and 'readable' listeners from it, and set the TTY into raw mode if it has not been in raw mode to begin with.

Why not use read instead?

Because readdoes not work inside a Node.js REPL.

LICENSE

Apache-2.0

2.0.3

2 days ago

2.0.4

2 days ago

2.0.1

2 days ago

2.0.0

2 days ago

1.0.0

3 years ago