@justinc/choices
v1.0.0
Published
Inquirer.js wrapper for asking user to select from a list of choices
Downloads
4
Readme
Inquirer.js wrapper for asking user to select from a list of choices.
Installation
npm install @justinc/choices
Usage
require('@justinc/choices')({ message: 'Make your selection' }).then(answer => {
console.log('You chose:', answer.choice);
});
require('@justinc/choices')({ message: 'Make your selection', choices: ['blue pill', 'red pill'] }).then(answer => {
console.log('You chose:', answer.choice);
});