justin-calleja / choices

0 stars 0 forks source link

NPM

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);
});

Object Argument: