1.0.0 • Published 6 years ago

hanul-co-prompt v1.0.0

Weekly downloads
25
License
MIT
Repository
github
Last release
6 years ago

co-prompt

Sane terminal user-input for nodejs that return thunks for co.

백스페이스 입력 안되는 버그 개선

Installation

$ npm install co-prompt

Examples

var name = yield prompt('username: ');
var pass = yield password('password: ');
var desc = yield multiline('description: ');
var ok = yield confirm('are you sure? ');

API

prompt(msg)

Prompt for user input with msg.

prompt.password(msg, mask)

Prompt for password input with msg and optional mask defaulting to "*".

prompt.multiline(msg)

Prompt for multi-line input with msg.

prompt.confirm(msg)

Prompt for confirmation with msg.

License

MIT