1.0.0 • Published 9 years ago
@justinc/choices v1.0.0
Inquirer.js wrapper for asking user to select from a list of choices.
Installation
npm install @justinc/choicesUsage
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);
});Object Argument:
- type: See
typehere. (default:'list') - name: See
namehere. (default:'choice') - message: See
messagehere. (default:'Select one of the following') - default: See
defaulthere. (default: `'yes', 'no', 'skip')
1.0.0
9 years ago
