2.0.0 • Published 5 years ago

dcdr v2.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
5 years ago

dcdr-js

VSCO’s DCDR (Decider) package for Node.js

Build Status

Overview

Decider is a feature flag system with adaptable backends. Read more on the DCDR repo.

Example

var dcdr = require('dcdr');

dcdr.init({ dcdr: { path: '/etc/dcdr/decider.json' } });

if (dcdr.isAvailable('enable_feature')) {
  console.log('feature enabled');
} else {
  console.log('feature disabled');
}

Release

Since we host this package on npm, there are a few steps to follow in order to do a release.

  1. Decide the release type. We follow the semantic versioning (semver) standard. Is it a patch, minor, or major release?
  2. Run npm version <release_type>. This updates the version number in package.json.
  3. Run script/release.
  4. Fill out the release notes. What changed?
  5. Run npm publish. See the docs for more info.
2.0.0

5 years ago

1.0.4

5 years ago

1.0.3

6 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

8 years ago