confd

2.1.0 • Public • Published

NPM version Dependency Status

conf.d

Multi-files JSON loader

Conf.d serves JSON documents obtained from static files and arbitrary paths passed by the user.
According to the paths being passed and the way the files are organized in folders (and sub-folders), JSON docs are mixed together and bundled into one.

Conf.d is to be used when there is a need for serving complex JSON documents, composed of default keys/values that can be overridden depending on arbitrary, runtime-picked criteria and loaded from a tree of files that reflects those possible override schemata.

Files and folders organization stays fixed, but JSON documents produced by conf.d are dynamically generated starting from those files and the rules passed to conf.d.

Documents are unified by using the unionj module.

Warning

Documentation still isn't complete

Install

$ npm install -g confd

Example Usage

First of all prepare your JSON configuration file(s) (you need root rights to execute these):

mkdir -p /etc/conf.d/myinstancename
touch /etc/conf.d/myinstancename/conf.json
echo "{\"key\":\"value\"}" > /etc/conf.d/myinstancename/conf.json

Finally you can either use the command-line utility to read your JSON conf:

confd cli get /etc/conf.d myinstancename
 
# {"key":"value"} 

Or you can expose them as a RESTful webservice:

confd rest --port 8080 --from /etc/conf.d
 
curl --get localhost:8080/confd/myinstancename
 
# {"key":"value"} 

Or you can embed conf.d straight into your Node.js code:

var confd = require('confd');
var conf  = confd.from('/etc/conf.d');
 
conf.get('myinstancename')
.then(function(obj)
{
    console.log('Result is: "%s"', JSON.stringify(obj));
    // Result is: "{"key":"value"}"
})
.catch(function(err)
{
    // Handle errors here...
});

When used as a node module the value retrieved is an actual Javascript object instead of a string containing a JSON doc.

Paths

Let's say we have the following files and folders structure:

/etc/conf.d/
    /subfolder1/
        file1.json => {"k": "v1"}
        file2.json => {"k": "v2"}
        /subfolder2/
            file1.json => {"x": "y"}
            file2.json => {"x": "y"}

If we execute confd cli get /etc/conf.d subfolder1 we obtain {"k": "v2"} as a result.
Here's what confd did to satisfy our request:

  • We told confd to get the files from root folder /etc/conf.d/, subfolder 'subfolder1'
  • confd then proceded to merge the contents of that folder, hence file1.json and file2.json
  • The result is the merge of the two JSON documents (for the merge rules, see unionj project)

"Common" documents

[Coming soon]

Strategies

Conf.d offers two different strategies to load the configuration data:

  • Leaves
  • Backcursion

Leaves

When using the "Leaves" strategy all the documents from the same folder are bundled into one.
There will be no sub-/super-paths traversing: the documents that's going to be bundled are just the ones into the one folder addressed by the provided path.

Backcursion

[Coming soon]

Array

[Coming soon]

Next steps

  • MongoDB docs loading
  • New startegy: "Named Backcursion"
  • RethinkDB docs loading

License

MIT © Nicola Orritos

Package Sidebar

Install

npm i confd

Weekly Downloads

3

Version

2.1.0

License

MIT

Last publish

Collaborators

  • nicolaorritos