wait-for-user-input
v1.0.0
Published
minimal way to wait for user input on the terminal.
Downloads
1,278
Readme
wait-for-user-input
minimal way to wait for user input on the terminal.
handles single character user input. (y/n)
async main () {
const input = await waitForUserInput('do you agree?')
...
}
installation
npm i wait-for-user-input
usage
async / await
const waitForUserInput = require('wait-for-user-input')
main()
async function main () {
const userInput = await waitForUserInput('')
// handle user input
}
promises
const waitForUserInput = require('wait-for-user-input')
waitForUserInput('')
.then(userInput => {
// handle user input
})