What is configstore?
The configstore npm package is used for easily loading and persisting config without having to think about where and how. It's ideal for storing user settings, application configurations, and other data that needs to be saved between sessions.
What are configstore's main functionalities?
Creating and managing a config store
This code demonstrates how to create a new config store associated with a specific package and set default values. It also shows how to retrieve a value from the store.
const Configstore = require('configstore');
const packageJson = require('./package.json');
const conf = new Configstore(packageJson.name, {foo: 'bar'});
console.log(conf.get('foo'));
//=> 'bar'
Setting and getting data
This code shows how to set and get data in the config store. It also demonstrates the use of dot-notation to work with nested properties.
conf.set('awesome', true);
console.log(conf.get('awesome'));
//=> true
// Using dot-notation for nested properties
conf.set('bar.baz', true);
console.log(conf.get('bar'));
//=> { baz: true }
Deleting data
This code snippet illustrates how to delete a key-value pair from the config store.
conf.delete('awesome');
console.log(conf.get('awesome'));
//=> undefined
Accessing the entire store
This code example shows how to access the entire config store, which returns an object containing all the key-value pairs.
console.log(conf.all);
//=> { foo: 'bar', bar: { baz: true } }
Checking if a key exists
This code demonstrates how to check if a particular key exists in the config store.
console.log(conf.has('foo'));
//=> true
Other packages similar to configstore
rc
The 'rc' package is similar to configstore in that it handles configuration for Node.js applications. It reads from a variety of sources including command-line arguments, environment variables, and configuration files. Unlike configstore, 'rc' does not provide an API for setting or deleting configuration values programmatically.
dotenv
The 'dotenv' package is used to load environment variables from a .env file into process.env. It is similar to configstore in that it helps manage application configuration. However, 'dotenv' is focused on environment variables and does not provide a direct API for setting, getting, or persisting data.
nconf
The 'nconf' package is a hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging. It provides a rich API for managing configuration data, similar to configstore, but with a focus on a hierarchical structure and multiple configuration sources.
configstore
Easily load and persist config without having to think about where and how.
Config is stored in a YAML file to make it simple for users to edit the config directly themselves. The file is located in $XDG_CONFIG_HOME
or ~/.config
. Eg: ~/.config/configstore/id-of-your-choosing.yml
Example usage
var Configstore = require('configstore');
var packageName = require('./package').name;
var conf = new Configstore(packageName, { foo: 'bar' });
conf.set('awesome', true);
console.log(conf.get('awesome'));
console.log(conf.get('foo'));
conf.del('awesome');
console.log(conf.get('awesome'));
Documentation
Methods
.set(key, val)
Set an item
.get(key)
Get an item
.del(key)
Delete an item
Properties
.all
Get all items as an object or replace the current config with an object:
conf.all = {
hello: 'world'
};
.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.
License
BSD license
Copyright Google