GitXplorerGitXplorer
v

js-cfg-lib

public
0 stars
0 forks
1 issues

Commits

List of commits on branch master.
Verified
a53365251fddd0fa5df42e9e36ee227881483101

Bump decode-uri-component from 0.2.0 to 0.2.2 (#17)

ddependabot[bot] committed 2 years ago
Verified
5a731592a624869a83e4f71b4301366436c11f75

Bump minimatch from 3.1.2 to 4.0.0 (#16)

ddependabot[bot] committed 2 years ago
Verified
81b574ff9995d91d8e9cf3d7e7cc6ea5bffc6b7c

Make minor tweaks to CI. (#15)

vvsajip committed 2 years ago
Verified
4c504bec456f40f7850a446d2b7042cf529f090d

Bump some JS dependencies. (#14)

vvsajip committed 2 years ago
Verified
9c867e650ceaa35d1fa30674cbd11eeb49238f02

Remove node 12.x and add node 18.x to CI. (#13)

vvsajip committed 2 years ago
Unverified
32b08ae4585302aa3c14579a4df6ed681e8eb955

Replace all occurrences \ -> /.

vvsajip committed 2 years ago

README

The README file for this repository.

The CFG configuration format is a text format for configuration files which is similar to, and a superset of, the JSON format. It dates from before its first announcement in 2008 and has the following aims:

  • Allow a hierarchical configuration scheme with support for key-value mappings and lists.
  • Support cross-references between one part of the configuration and another.
  • Provide a string interpolation facility to easily build up configuration values from other configuration values.
  • Provide the ability to compose configurations (using include and merge facilities).
  • Provide the ability to access real application objects safely, where supported by the platform.
  • Be completely declarative.

It overcomes a number of drawbacks of JSON when used as a configuration format:

  • JSON is more verbose than necessary.
  • JSON doesn’t allow comments.
  • JSON doesn’t provide first-class support for dates and multi-line strings.
  • JSON doesn’t allow trailing commas in lists and mappings.
  • JSON doesn’t provide easy cross-referencing, interpolation, or composition.

Installation

You can use this package using npm install cfg-lib and then const config = require('cfg-lib') in your code.

Exploration

To explore CFG functionality for JavaScript, we can just use the node Read-Eval-Print-Loop (REPL). You can invoke it using

$ node

Getting Started with CFG in JavaScript

A configuration is represented by an instance of the Config class. The constructor for this class can be passed a filename or a stream which contains the text for the configuration. The text is read in, parsed and converted to an object that you can then query. A simple example:

a: 'Hello, '
b: 'world!'
c: {
  d: 'e'
}
'f.g': 'h'
christmas_morning: `2019-12-25 08:39:49`
home: `$HOME`
foo: `$FOO|bar`

Loading a configuration

The configuration above can be loaded as shown below. In the REPL shell:

> const config = require('cfg-lib');
undefined
> let cfg = new config.Config("test0.cfg");
undefined

Usage in a browser

In a browser, API elements are exposed in the CFG namespace:

let stream = CFG.makeStream('abc: 1');
let cfg = new CFG.Config(stream);
let d = cfg.asDict();
console.log(d);

The above code would print the object { abc: 1 } in the console.

Access elements with keys

Accessing elements of the configuration with a simple key uses the get method:

> cfg.get('a')
'Hello, '
> cfg.get('b')
'world!'

Access elements with paths

As well as simple keys, elements can also be accessed using path strings:

> cfg.get('c.d')
'e'

Here, the desired value is obtained in a single step, by (under the hood) walking the path c.d – first getting the mapping at key c, and then the value at d in the resulting mapping.

Note that you can have simple keys which look like paths:

> cfg.get('f.g')
'h'

If a key is given that exists in the configuration, it is used as such, and if it is not present in the configuration, an attempt is made to interpret it as a path. Thus, f.g is present and accessed via key, whereas c.d is not an existing key, so is interpreted as a path.

Access to date/time objects

You can also get native date/time objects from a configuration, by using an ISO date/time pattern in a backtick-string:

> cfg.get('christmas_morning')
2019-12-25T08:39:49.000Z

Access to environment variables

To access an environment variable, use a backtick-string of the form $VARNAME:

> cfg.get('home')
'/home/vinay'

You can specify a default value to be used if an environment variable isn’t present using the $VARNAME|default-value form. Whatever string follows the pipe character (including the empty string) is returned if VARNAME is not a variable in the environment.

> cfg.get('foo')
'bar'

For more information, see the CFG documentation.