sconfig

1.0.7 • Public • Published

Installation

npm i --save sconfig

What it is

Node.js client for sconfig.io encrypted configuration storage

How to get started

  1. Login with UNLOQ (https://sconfig.io/download) at https://sconfig.io
  2. Create an application with an environment and a minimal description. A default API key will be generated for you
  3. Navigate to the Versions tab and create a new configuration version, giving it a name and selecting a content type
  4. Enter some configuration data and save it
  5. Go back to Details and view the API Key
  6. Use either the full configuration access key or the zero-knowledge access key plus the application secret and place them in your application.

Usage

var sconfig = require('sconfig');
 
sconfig({
  key: '{YOUR_FULL_API_KEY}',
  version: 'latest',           // version to fetch, defaults to latest version created
  json: true,                  // by default, expect JSON data and parse it.
  sync: true                   // persist the configuration data locally in the event of an sconfig server outage
}, function(err, config) {
  if (err) {
    console.log(err);
    return;
  }
  // configuration data available, cached and parsed
  console.log("Start app with config:", config);
});

Example applications

  • example/fetch-full.js
  • example/fetch-zero-knowledge.js

License

MIT (The MIT License)

Copyright (c) 2015-2016 UNLOQ Systems LTD

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependents (0)

Package Sidebar

Install

npm i sconfig

Weekly Downloads

7

Version

1.0.7

License

MIT

Last publish

Collaborators

  • clym-io