Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@openfeature/js-sdk
Advanced tools
This is the JavaScript implementation of OpenFeature, a vendor-agnostic abstraction library for evaluating feature flags.
We support multiple data types for flags (numbers, strings, booleans, objects) as well as hooks, which can alter the lifecycle of a flag evaluation.
This library is intended to be used in server-side contexts and has not been evaluated for use client-side or on mobile devices.
npm install @openfeature/js-sdk
or
yarn add @openfeature/js-sdk
import { OpenFeature } from '@openfeature/js-sdk';
OpenFeature.setProvider(new MyProvider());
const client = OpenFeature.getClient();
const value = await client.getBooleanValue('enabled-new-feature', false);
Install dependencies with npm ci
. npm install
will update the package-lock.json with the most recent compatible versions.
We value having as few runtime dependencies as possible. The addition of any dependencies requires careful consideration and review.
Run tests with npm test
.
Both ES modules and CommonJS modules are supported, so consumers can use both require
and import
functions to utilize this module. This is accomplished by building 2 variations of the output, under dist/esm
and dist/cjs
, respectively. To force resolution of the dist/esm/**.js*
files as modules, a package json with only the context {"type": "module"}
is included at a in a postbuild
step. Type declarations are included at /dist/types/
For testing purposes, you can add a comment containing "/publish" in any PR. This will publish an experimental SDK version with the git SHA appended to the version number.
Thanks so much to our contributors.
Made with contrib.rocks.
Apache License 2.0
FAQs
OpenFeature SDK for JavaScript
We found that @openfeature/js-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.