Config parser for @lumeweb/relay
Go to file
Derrick Hammer 3f1b1dca42
ci: setup
2023-07-04 02:14:19 -04:00
.github/workflows ci: setup 2023-07-04 02:14:19 -04:00
src *Make the config property meta 2023-04-18 23:36:10 -04:00
.presetterrc.json ci: setup 2023-07-04 02:14:19 -04:00
LICENSE *Initial port to typescript 2022-09-21 14:16:00 -04:00
README.md pkg: fix readme. 2017-12-27 22:44:56 -08:00
package.json ci: setup 2023-07-04 02:14:19 -04:00

README.md

bcfg

Config parser (used for bcoin).

Usage

const Config = require('bcfg');

// Will consider ~/.my-module the prefix directory.
const config = new Config('my-module', {
  alias: {
    'n': 'network'
  }
});

// Inject some custom options first.
config.inject({
  some: 'user',
  options: 'here'
});

config.load({
  // Parse URL hash
  hash: true,
  // Parse querystring
  query: true,
  // Parse environment
  env: true,
  // Parse args
  argv: true
});

// Will parse ~/.my-module/my-config.conf (throws on FS error).
config.open('my-config.conf');

// These will cast types and throw on incorrect type.
console.log(config.str('username'));
console.log(config.str('password'));
console.log(config.uint('userid'));
console.log(config.float('percent'));
console.log(config.bool('initialize'));

Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. </legalese>

License

  • Copyright (c) 2017, Christopher Jeffrey (MIT License).

See LICENSE for more info.