Note this is a Fork of configstore
This fork only contains minor differences:
- Reads are side effect free
- Only create the store directory on write if it does not exist
- Only writes to the store if there is something to write
This fork is not meant to be a general replacement for configstore.
It was solely created to solve issues relating to the changes above.
configstore
Easily load and persist config without having to think about where and how
Config is stored in a JSON file located in $XDG_CONFIG_HOME
or ~/.config
.
Example: ~/.config/configstore/some-id.json
If you need this for Electron, check out electron-store
instead.
Usage
const Configstore = require('configstore');
const pkg = require('./package.json');
const conf = new Configstore(pkg.name, {foo: 'bar'});
console.log(conf.get('foo'));
conf.set('awesome', true);
console.log(conf.get('awesome'));
conf.set('bar.baz', true);
console.log(conf.get('bar'));
conf.delete('awesome');
console.log(conf.get('awesome'));
API
Configstore(packageName, [defaults], [options])
Returns a new instance.
packageName
Type: string
Name of your package.
defaults
Type: Object
Default config.
options
globalConfigPath
Type: boolean
Default: false
Store the config at $CONFIG/package-name/config.json
instead of the default $CONFIG/configstore/package-name.json
. This is not recommended as you might end up conflicting with other tools, rendering the "without having to think" idea moot.
Instance
You can use dot-notation in a key
to access nested properties.
.set(key, value)
Set an item.
.set(object)
Set multiple items at once.
.get(key)
Get an item.
.has(key)
Check if an item exists.
.delete(key)
Delete an item.
.clear()
Delete all items.
.size
Get the item count.
.path
Get the path to the config file. Can be used to show the user where the config file is located or even better open it for them.
.all
Get all the config as an object or replace the current config with an object:
conf.all = {
hello: 'world'
};
License
BSD license
Copyright Google