cloudbees-openfeature-provider-browser
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

cloudbees-openfeature-provider-browser

Project Status: WIP – Initial development is in progress, but there has not yet been a stable, usable release suitable for the public. a OpenFeature Specification OpenFeature SDK npm version CloudBees Rox SDK Known Vulnerabilities

This is the CloudBees provider implementation for OpenFeature for the Javascript SDK.

OpenFeature provides a vendor-agnostic abstraction layer on Feature Flag management.

This provider allows the use of CloudBees Feature Management as a backend for Feature Flag configurations.

Requirements

  • node 14 or greater

Installation

Add it to your build

npm install cloudbees-openfeature-provider-browser

or

yarn add cloudbees-openfeature-provider-browser

Confirm peer dependencies are installed

npm install @openfeature/js-sdk

or

yarn add @openfeature/js-sdk

Configuration

Follow the instructions on the Node SDK project for how to use the Node SDK.

You can configure the CloudBees provider by doing the following:

import {OpenFeature} from '@openfeature/js-sdk';
import {CloudbeesProvider} from 'cloudbees-openfeature-provider-browser'

const appKey = 'INSERT_APP_KEY_HERE'
OpenFeature.setProvider(await CloudbeesProvider.build(appKey));
const client = OpenFeature.getClient();
const value = await client.getBooleanValue('enabled-new-feature', false);

Package Sidebar

Install

npm i cloudbees-openfeature-provider-browser

Weekly Downloads

106

Version

1.0.0

License

Apache-2.0

Unpacked Size

1.1 MB

Total Files

16

Last publish

Collaborators

  • cloudbees-owner
  • asaf_rollout
  • agentgonzo
  • sgrahamcloud