A wrapper around inquirer that makes it easy to create and selectively reuse questions.
npm install question-cacheA wrapper around inquirer that makes it easy to create and selectively reuse questions.
Install with npm:
``sh`
$ npm install --save question-cache
`js
'use strict';
var Store = require('data-store');
var hints = new Store('example-hints-store');
var questions = require('question-cache');
questions()
.use(function() {
this.on('ask', function(val, key, question) {
question.default = hints.get(key);
});
this.on('answer', function(val, key) {
hints.set(key, val);
});
})
.set('first', 'What is your first name?')
.set('last', 'What is your last name?')
.set('foo', 'What is foo?', {
when: function() {
// console.log(arguments)
}
})
.ask(function(err, answers) {
console.log(answers);
});
`
Screen capture

See the working examples.
See the working examples.
`js
var questions = require('question-cache')();
// question type "input" is used by default
questions
.set('name', 'What is your name?')
.ask('name', function (err, answers) {
console.log(answers);
});
`
You may optionally pass your own instance of inquirer to the constructor:
`js
// on the options
var questions = require('question-cache');
var questions = new Questions({
inquirer: require('inquirer2')
});
// or if inquirer is the only thing passed
var questions = new Questions(require('inquirer2'));
`
question-cache is a wrapper around inquirer2. If you have any issues related to the interface (like scrolling, colors, styling, etc), then please create an issue on the inquirer2 project.
Asking questions
The simplest way to ask a question is by passing a string and a callback:
`js`
questions.ask('name', function (err, answers) {
console.log(answers);
});
Ask all cached questions
`js`
questions.ask(function (err, answers) {
console.log(answers);
});
Create an instance of Questions with the given options.
Params
* options {Object}: question cache options
Example
`js`
var Questions = new Questions(options);
Calls addQuestion, with the only difference being that .set returns the questions instance and .addQuestion returns the question object. So use .set if you want to chain questions, or .addQuestion if you need the created question object.
Params
* name {Object|String}: Question name, message (string), or question/options object.value
* {Object|String}: Question message (string), or question/options object.options
* {Object|String}: Question/options object.
Example
`js
questions
.set('drink', 'What is your favorite beverage?')
.set('color', 'What is your favorite color?')
.set('season', 'What is your favorite season?');
// or
questions.set('drink', {
type: 'input',
message: 'What is your favorite beverage?'
});
// or
questions.set({
name: 'drink'
type: 'input',
message: 'What is your favorite beverage?'
});
`
Add a question to be asked at a later point. Creates an instance of Question, so any Question options or settings may be used. Also, the default type is input if not defined by the user.
Params
* name {Object|String}: Question name, message (string), or question/options object.value
* {Object|String}: Question message (string), or question/options object.options
* {Object|String}: Question/options object.
Example
`js
questions.addQuestion('drink', 'What is your favorite beverage?');
// or
questions.addQuestion('drink', {
type: 'input',
message: 'What is your favorite beverage?'
});
// or
questions.addQuestion({
name: 'drink'
type: 'input',
message: 'What is your favorite beverage?'
});
`
Create a "choices" question from an array of values.
Params
* key {String}: Question keymsg
* {String}: Question messageitems
* {Array}: Choice itemsoptions
* {Object|Function}: Question options or callback functioncallback
* {Function}: callback function
Example
`js
questions.choices('foo', ['a', 'b', 'c']);
// or
questions.choices('foo', {
message: 'Favorite letter?',
choices: ['a', 'b', 'c']
});
`
Create a "list" question from an array of values.
Params
* key {String}: Question keymsg
* {String}: Question messagelist
* {Array}: List itemsqueue
* {String|Array}: Name or array of question names.options
* {Object|Function}: Question options or callback functioncallback
* {Function}: callback function
Example
`js
questions.list('foo', ['a', 'b', 'c']);
// or
questions.list('foo', {
message: 'Favorite letter?',
choices: ['a', 'b', 'c']
});
`
Create a "rawlist" question from an array of values.
Params
* key {String}: Question keymsg
* {String}: Question messagelist
* {Array}: List itemsqueue
* {String|Array}: Name or array of question names.options
* {Object|Function}: Question options or callback functioncallback
* {Function}: callback function
Example
`js
questions.rawlist('foo', ['a', 'b', 'c']);
// or
questions.rawlist('foo', {
message: 'Favorite letter?',
choices: ['a', 'b', 'c']
});
`
Create an "expand" question from an array of values.
Params
* key {String}: Question keymsg
* {String}: Question messagelist
* {Array}: List itemsqueue
* {String|Array}: Name or array of question names.options
* {Object|Function}: Question options or callback functioncallback
* {Function}: callback function
Example
`js
questions.expand('foo', ['a', 'b', 'c']);
// or
questions.expand('foo', {
message: 'Favorite letter?',
choices: ['a', 'b', 'c']
});
`
Create a "choices" question from an array of values.
Params
* queue {String|Array}: Name or array of question names.options
* {Object|Function}: Question options or callback functioncallback
* {Function}: callback function
Example
`js`
questions.choices('foo', ['a', 'b', 'c']);
// or
questions.choices('foo', {
message: 'Favorite letter?',
choices: ['a', 'b', 'c']
});
Get question name, or group name if question is not found. You can also do a direct lookup using quesions.cache['foo'].
Params
* name {String}returns
* {Object}: Returns the question object.
Example
`js`
var name = questions.get('name');
//=> question object
Returns true if questions.cache or questions.groups has question name.
* returns {String}: The name of the question to check
Example
`js`
var name = questions.has('name');
//=> true
Delete the given question or any questions that have the given namespace using dot-notation.
* returns {String}: The name of the question to delete
Example
`js
questions.del('name');
questions.get('name');
//=> undefined
// using dot-notation
questions.del('author');
questions.get('author.name');
//=> undefined
`
Clear all cached answers.
Example
`js`
questions.clearAnswers();
Clear all questions from the cache.
Example
`js`
questions.clearQuestions();
Clear all cached questions and answers.
Example
`js`
questions.clear();
Ask one or more questions, with the given options and callback.
Params
* queue {String|Array}: Name or array of question names.options
* {Object|Function}: Question options or callback functioncallback
* {Function}: callback function
Example
`js`
questions.ask(['name', 'description'], function(err, answers) {
console.log(answers);
});
Normalize the given value to return an array of question keys.
Params
* {[type]}: key
* returns {[type]}
See the working examples.
Qestions may be cached using object-path notatation (e.g. a.b.c).
Example
All of the following will be cached on the name object:
`js`
questions
.set('name.first', 'What is your first name?')
.set('name.middle', 'What is your middle name?')
.set('name.last', 'What is your last name?')
Dot notation usage
When cached using dot-notation, there are a few different ways questions that may be asked.
#### ask one
Ask a single name question:
`js`
questions.ask('name.first', function (err, answers) {
console.log(answers);
});
#### ask all "name" questions
Ask all name questions, first, middle and last:
`js`
questions.ask('name', function (err, answers) {
console.log(answers);
});
#### array of questions
Ask specific questions on name:
`js`
questions.ask(['name.first', 'name.last'], function (err, answers) {
console.log(answers);
});
#### ask all questions
Ask specific questions on name:
`js
questions
.set('name.first', {
message: 'What is your first name?',
})
.set('name.last', {
message: 'What is your last name?',
})
.set('foo', {
message: 'Any thoughts about foo?',
})
questions.ask(['name', 'foo'], function (err, answers) {
console.log(answers);
});
`
#### nested questions
Ask one question at a time, based on feedback:
`js
questions.ask('name.first', function (err, answers) {
console.log(answers);
//=> {name: { first: 'Brian' }}
questions.ask('name.last', function (err, answers) {
console.log(answers);
//=> {name: { last: 'Woodward' }}
});
});
`
Given you have the following questions:
`js`
questions
.set('name.first', 'What is your first name?')
.set('name.last', 'What is your last name?')
.set('foo', 'Any thoughts about foo?')
.set('bar', 'Any thoughts about bar?')
The following will ask questions: name.first, name.last and foo
`js`
questions.ask(['name', 'foo'], function (err, answers) {
console.log(answers);
});
* ask-for-github-auth: Prompt a user for their github authentication credentials and save the results. | homepage
* ask-once: Only ask a question one time and store the answer. | homepage
* generate: Command line tool and developer framework for scaffolding out new GitHub projects. Generate offers the… more | homepage
* question-helper: Template helper that asks a question in the command line and resolves the template with… more | homepage
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
_(This document was generated by verb-generate-readme (a verb generator), please don't edit the readme directly. Any changes to the readme must be made in .verb.md.)_
To generate the readme and API documentation with verb:
`sh`
$ npm install -g verb verb-generate-readme && verb
Install dev dependencies:
`sh``
$ npm install -d && npm test
Jon Schlinkert
* github/jonschlinkert
* twitter/jonschlinkert
Copyright © 2016, Jon Schlinkert.
Released under the MIT license.
*
_This file was generated by verb-generate-readme, v0.1.30, on August 17, 2016._