0.0.1 • Published 2 years ago

nconf-appconfig v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

nconf-appconfig

IBM Cloud App Configuration store for nconf

Installation

Installing npm (node package manager)

  $ curl http://npmjs.org/install.sh | sh

Installing nconf-appconfig

  $ [sudo] npm install nconf
  $ [sudo] npm install nconf-appconfig

Usage

The store provided by nconf-appconfig will persist all of your configuration settings to a IBM Cloud App Configuration server. All calls to .get() are asynchronous taking an additional callback parameter.

  var nconf = require('nconf');
  
  //
  // Requiring `nconf-appconfig` will extend the `nconf`
  // module.
  //
  require('nconf-appconfig');
  
  nconf.use('appconfig', { region: 'us-south', guid: 'guid', apikey: 'apikey', collectionId: 'collection', environmentId: 'dev' });

Author: Josephine Eskaline Joyce