⬇️ Package to save your own configuration persistently on your computer.
npm i config-storage// using require
const { ConfigurationStorage } = require('config-storage');
// using import
import { ConfigurationStorage } from 'config-storage';const config = await ConfigurationStorage.getStorage('my_application');Passing storageName allows you to identify your storage with a key. This also means that you can have as many storages as you want.
const mainConfig = await ConfigurationStorage.getStorage('main_configuration');
const userConfig = await ConfigurationStorage.getStorage('user_configuration');
const paymentConfig = await ConfigurationStorage.getStorage('payment_configuration');❗ IMPORTANT
For all of the following methods that expect a key, you can use dot-notation to refer to nested values. For instance, the key DATABASES.mysql.hostname refers to an object like:
{
DATABASES: {
mysql: {
hostname: 'localhost'
}
}
}await config.set('MAIN_KEY', 'GiQTZ8yKBcfuEnTFbs3TvcqoAsF6owLu');It returns defaultValue if the key doesn't exist.
await config.get('MAIN_KEY');await config.getAll();await config.del('MAIN_KEY');await config.exists('MAIN_KEY');await config.clean();