npm install async-promptSane terminal user-input for nodejs that return thunks for Promise.
```
$ npm install async-prompt
`js`
const name = await prompt('username: ');
const pass = await password('password: ');
const desc = await multiline('description: ');
const ok = await confirm('are you sure? ');
Prompt for user input with msg.
Prompt for password input with msg and optional mask
defaulting to "*".
if run without tty, will use prompt(msg) instead
Prompt for multi-line input with msg.
Prompt for confirmation with msg`.
MIT
##
Forked from co-prompt