
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
answer-store
Advanced tools
Store answers to user prompts, based on locale and/or current working directory.
Store answers to user prompts, based on locale and/or current working directory.
(TOC generated by verb using markdown-toc)
Install with npm:
$ npm i answer-store --save
var answer = require('answer-store');
What does this do?
With project generators and build systems it's fairly common to prompt the user for information that is needed to complete the build or generate the project.
This library makes it easy to:
How this works
locale.default answer may be defined for each localeSee the API docs for information about setting and getting stores values.
Example
var answer = new Answer('project-name');
answer.set('foo');
Results in the following object being written to project-name.json at '/Users/jonschlinkert/answers/project-name.json':
{
cache:
{ dest: '/Users/jonschlinkert/answers',
+ path: '/Users/jonschlinkert/answers/project-name.json',
cwd: '/Users/jonschlinkert/dev/answer-store' },
options: {},
name: 'project-name',
data: {
en: {
'/Users/jonschlinkert/dev/answer-store': 'foo'
}
}
}
locales
If the question has been answered for multiple locales, the object would something like this:
{
cache:
{ dest: '/Users/jonschlinkert/answers',
path: '/Users/jonschlinkert/answers/project-name.json',
cwd: '/Users/jonschlinkert/dev/answer-store' },
options: {},
name: 'project-name',
+ data: {
+ en: { '/Users/jonschlinkert/dev/answer-store': 'foo' },
+ es: { '/Users/jonschlinkert/dev/answer-store': 'bar' },
+ fr: { '/Users/jonschlinkert/dev/answer-store': 'baz' }
+ }
}
directories
When the question has been answered from different directories, the object might look something like this:
{
cache:
{ dest: '/Users/jonschlinkert/answers',
path: '/Users/jonschlinkert/answers/project-name.json',
cwd: '/Users/jonschlinkert/dev/answer-store' },
options: {},
name: 'project-name',
data: {
+ en: {
+ '/Users/jonschlinkert/dev/answer-store/1': 'foo1',
+ '/Users/jonschlinkert/dev/answer-store/2': 'foo2',
+ '/Users/jonschlinkert/dev/answer-store/3': 'foo3'
+ }
}
}
defaults
A default value may be stored for each locale:
{
cache:
{ dest: '/Users/jonschlinkert/answers',
path: '/Users/jonschlinkert/answers/project-name.json',
cwd: '/Users/jonschlinkert/dev/answer-store' },
options: {},
name: 'project-name',
data: {
+ default: 'foo',
en: {
'/Users/jonschlinkert/dev/answer-store/1': 'foo1',
'/Users/jonschlinkert/dev/answer-store/2': 'foo2',
'/Users/jonschlinkert/dev/answer-store/3': 'foo3'
}
}
}
What else?
Module dependencies are lazily required, so initialization is fast!
Create new Answer store name, with the given options.
Params
name {String}: The answer property name.options {Object}: Store optionsStore the specified value for the current (or given) local, at the current cwd.
Params
value {any}: The answer value.locale {String}: Optionally pass the locale to use, otherwise the default locale is used.Example
answer.set('foo');
Get the stored answer for the current (or given) locale at the current cwd.
Params
locale {String}: Optionally pass the locale to use, otherwise the default locale is used.Example
answer.get(locale);
Return true if an answer has been stored for the current (or given) locale at the working directory.
Params
locale {String}: Optionally pass the locale to use, otherwise the default locale is used.Example
answer.has('foo');
Delete the stored values for the current (or given) locale, at the current cwd.
Params
locale {String}: Optionally pass the local to delete.Example
answer.del(locale);
Erase all stored values and delete the answer store from the file system.
Example
answer.erase();
Set the default answer for the currently defined locale.
Params
locale {String}: Optionally pass the locale to use, otherwise the default locale is used.Example
answer.setDefault('foo');
Get the default answer for the currently defined locale.
Params
locale {String}: Optionally pass the locale to use, otherwise the default locale is used.Example
answer.getDefault();
Return true if a value is stored for the current (or given) locale, at the current cwd.
Params
locale {String}: Optionally pass the locale to use, otherwise the default locale is used.Example
answer.hasDefault(locale);
Delete the stored values for the current (or given) locale.
Params
locale {String}: Optionally pass the local to delete.Example
answer.delDefault(locale);
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Generate readme and API documentation with verb:
$ npm i -d && npm run docs
Or, if verb is installed globally:
$ verb
Install dev dependencies:
$ npm i -d && npm test
Jon Schlinkert
Copyright © 2016 Jon Schlinkert Released under the MIT license.
This file was generated by verb, v0.9.0, on February 21, 2016.
FAQs
Store answers to user prompts, based on locale and/or current working directory.
The npm package answer-store receives a total of 13 weekly downloads. As such, answer-store popularity was classified as not popular.
We found that answer-store demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.