
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
fleng-config
Advanced tools
Hierarchical configuration for fleng with YAML files and atomic object merging.
Hierarchical fleng configuration with YAML files and atomic object merging.
npm install --save fleng-config
var fconf = require('fleng-config');
// Initialize config provider
var config = new fconf.Provider(__dirname);
// Add default.yaml file as `default` store
config.add('default', 'config/default.yaml');
// Add development.yaml file as `environment` store
config.add('environment', 'config/development.yaml');
// Add an object literal as `overrides` store
config.add('overrides', {
group: {
property: 'value'
}
});
// Add defaults store
config.defaults('global', { group: { property: 'value' } });
// Add overrides store
config.overrides('important', { group: { property: 'value' } });
// Explicitly set value at path `group.property`. It cannot be overrided
config.set('group.property', 'updated value');
// Get full config as an object
config.get();
// Get `group` branch of config
config.get('group');
// Get value at path `group.property`
config.get('group.property');
new fconf.Provider([String root])Create a new config provider. Optional parameter root sets the directory
against which file paths will be resolved. If omitted process.cwd() will be
used.
.add(String name, String filePath|Object store)Add a store to the config provider. If filePath is passed provider will
try to load a file from that path. The path is resolved against root passed
to the constructor or process.cwd(). If an object literal was passed as second
argument, it will be added to the config provider as is.
.get([String path])Get a value by the path passed. If value was not found, method will return
undefined.
.set(String path, * value)Set a value at the passed path. Values set with this method could not be overrided later.
.defaults(String path, * value)Add a default store. Values from this store will be used if they were not found in generic and overrides stores.
.overrides(String path, * value)Add an override store. Values from this store will not be overrided by generic or defaults stores.
Module source is in ES6 module syntax. It's built using Babel.js.
Install development dependencies:
npm install -d
and run:
make
Tests are written using mocha and should.js library. To run testing install development dependencies:
npm install -d
and run:
npm test
MIT.
FAQs
Hierarchical configuration for fleng with YAML files and atomic object merging.
We found that fleng-config 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.