
Security News
pnpm 10.16 Adds New Setting for Delayed Dependency Updates
pnpm's new minimumReleaseAge setting delays package updates to prevent supply chain attacks, with other tools like Taze and NCU following suit.
@openfeature/flipt-provider
Advanced tools
[Flipt](https://www.flipt.io/) is an open source developer friendly feature flagging solution, that allows for easy management and fast feature evaluation.
Flipt is an open source developer friendly feature flagging solution, that allows for easy management and fast feature evaluation.
This provider is an implementation on top of the official Flipt Node Server Side SDK.
$ npm install @openfeature/flipt-provider
Both the OpenFeature SDK and the Flipt Node Server SDK are required as peer dependencies.
Please make sure to install @flipt-io/flipt
at versions >= 1.0.0
, as the client API is different in earlier versions.
The peer dependency will also enforce the above version.
To initialize the OpenFeature client with Flipt, you can use the following code snippet:
import { FliptProvider } from '@openfeature/flipt';
const provider = new FliptProvider('namespace-of-choice', { url: 'http://your.upstream.flipt.host' });
OpenFeature.setProvider(provider);
After the provider gets initialized, you can start evaluations of feature flags like so:
const client = OpenFeature.getClient();
const details = await client.getStringDetails('nonExistent', 'default', {
targetingKey: 'myentity',
email: 'john@flipt.io',
});
OpenFeature standardizes the evaluation context to include a targetingKey
, and some other additional arbitrary properties that each provider can use fit for their use case.
For Flipt, we translate the targetingKey
as the entityId
, and the rest of the OpenFeature evaluation context as the context
in Flipt vernacular. You can find the meaning of those two words here in our API docs.
For example, an OpenFeature Evaluation context that has this structure:
{
"targetingKey": "my-targeting-id",
"email": "john@flipt.io",
"userId": "this-very-long-user-id"
}
will get transformed to the following for Flipt:
{
"entityId": "my-targeting-id",
"context": {
"email": "john@flipt.io",
"userId": "this-very-long-user-id"
}
}
Run nx package providers-flipt
to build the library.
Run nx test providers-flipt
to execute the unit tests via Jest.
FAQs
[Flipt](https://www.flipt.io/) is an open source developer friendly feature flagging solution, that allows for easy management and fast feature evaluation.
The npm package @openfeature/flipt-provider receives a total of 54,881 weekly downloads. As such, @openfeature/flipt-provider popularity was classified as popular.
We found that @openfeature/flipt-provider demonstrated a healthy version release cadence and project activity because the last version was released less than 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
pnpm's new minimumReleaseAge setting delays package updates to prevent supply chain attacks, with other tools like Taze and NCU following suit.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.