OpenFeature is an open specification that provides a vendor-agnostic, community-driven API for feature flagging that works with your favorite feature flag management tool.
🚀 Quick start
Requirements
Node.js version 16+
Install
npm
npm install --save @openfeature/server-sdk
yarn
# yarn requires manual installation of the @openfeature/core peer-dependency
yarn add @openfeature/server-sdk @openfeature/core
Usage
import { OpenFeature } from'@openfeature/server-sdk';
// Register your feature flag providerawaitOpenFeature.setProviderAndWait(newYourProviderOfChoice());
// create a new clientconst client = OpenFeature.getClient();
// Evaluate your feature flagconst v2Enabled = await client.getBooleanValue('v2_enabled', false);
if (v2Enabled) {
console.log("v2 is enabled");
}
Extend OpenFeature with custom providers and hooks.
Implemented: ✅ | In-progress: ⚠️ | Not implemented yet: ❌
Providers
Providers are an abstraction between a flag management system and the OpenFeature SDK.
Look here for a complete list of available providers.
If the provider you're looking for hasn't been created yet, see the develop a provider section to learn how to build it yourself.
Once you've added a provider as a dependency, it can be registered with OpenFeature like this:
Awaitable
To register a provider and ensure it is ready before further actions are taken, you can use the setProviderAndWait method as shown below:
To register a provider in a synchronous manner, you can use the setProvider method as shown below:
OpenFeature.setProvider(newMyProvider());
Once the provider has been registered, the status can be tracked using events.
In some situations, it may be beneficial to register multiple providers in the same application.
This is possible using domains, which is covered in more details below.
Targeting
Sometimes, the value of a flag must consider some dynamic criteria about the application or user, such as the user's location, IP, email address, or the server's location.
In OpenFeature, we refer to this as targeting.
If the flag management system you're using supports targeting, you can provide the input data using the evaluation context.
// set a value to the global contextOpenFeature.setContext({ region: "us-east-1" });
// set a value to the client contextconst client = OpenFeature.getClient();
client.setContext({ version: process.env.APP_VERSION });
// set a value to the invocation contextconst requestContext = {
targetingKey: req.session.id,
email: req.session.email,
product: req.productId
};
const boolValue = await client.getBooleanValue('some-flag', false, requestContext);
Hooks
Hooks allow for custom logic to be added at well-defined points of the flag evaluation life-cycle.
Look here for a complete list of available hooks.
If the hook you're looking for hasn't been created yet, see the develop a hook section to learn how to build it yourself.
Once you've added a hook as a dependency, it can be registered at the global, client, or flag invocation level.
import { OpenFeature } from"@openfeature/server-sdk";
// add a hook globally, to run on all evaluationsOpenFeature.addHooks(newExampleGlobalHook());
// add a hook on this client, to run on all evaluations made by this clientconst client = OpenFeature.getClient();
client.addHooks(newExampleClientHook());
// add a hook for this evaluation onlyconst boolValue = await client.getBooleanValue("bool-flag", false, { hooks: [newExampleHook()]});
Logging
The Node.JS SDK will log warnings and errors to the console by default.
This behavior can be overridden by passing a custom logger either globally or per client.
A custom logger must implement the Logger interface.
importtype { Logger } from"@openfeature/server-sdk";
// The logger can be anything that conforms with the Logger interfaceconstlogger: Logger = console;
// Sets a global loggerOpenFeature.setLogger(logger);
// Sets a client loggerconst client = OpenFeature.getClient();
client.setLogger(logger);
Domains
Clients can be assigned to a domain.
A domain is a logical identifier which can be used to associate clients with a particular provider.
If a domain has no associated provider, the default provider is used.
import { OpenFeature, InMemoryProvider } from"@openfeature/server-sdk";
const myFlags = {
'v2_enabled': {
variants: {
on: true,
off: false
},
disabled: false,
defaultVariant: "on"
}
};
// Registering the default providerOpenFeature.setProvider(InMemoryProvider(myFlags));
// Registering a provider to a domainOpenFeature.setProvider("my-domain", newInMemoryProvider(someOtherFlags));
// A Client bound to the default providerconst clientWithDefault = OpenFeature.getClient();
// A Client bound to the InMemoryProvider providerconst domainScopedClient = OpenFeature.getClient("my-domain");
Domains can be defined on a provider during registration.
For more details, please refer to the providers section.
Eventing
Events allow you to react to state changes in the provider or underlying flag management system, such as flag definition changes, provider readiness, or error conditions.
Initialization events (PROVIDER_READY on success, PROVIDER_ERROR on failure) are dispatched for every provider.
Some providers support additional events, such as PROVIDER_CONFIGURATION_CHANGED.
Please refer to the documentation of the provider you're using to see what events are supported.
Transaction context is a container for transaction-specific evaluation context (e.g. user id, user agent, IP).
Transaction context can be set where specific data is available (e.g. an auth service or request handler) and by using the transaction context propagator it will automatically be applied to all flag evaluations within a transaction (e.g. a request or thread).
The following example shows an Express middleware using transaction context propagation to propagate the request ip and user id into request scoped transaction context.
import express, { Request, Response, NextFunction } from"express";
import { OpenFeature, AsyncLocalStorageTransactionContextPropagator } from'@openfeature/server-sdk';
OpenFeature.setTransactionContextPropagator(newAsyncLocalStorageTransactionContextPropagator())
/**
* This example is based on an express middleware.
*/const app = express();
app.use((req: Request, res: Response, next: NextFunction) => {
const ip = res.headers.get("X-Forwarded-For")
OpenFeature.setTransactionContext({ targetingKey: req.user.id, ipAddress: ip }, () => {
// The transaction context is used in any flag evaluation throughout the whole call chain of nextnext();
});
})
Shutdown
The OpenFeature API provides a close function to perform a cleanup of all registered providers.
This should only be called when your application is in the process of shutting down.
To develop a provider, you need to create a new project and include the OpenFeature SDK as a dependency.
This can be a new repository or included in the existing contrib repository available under the OpenFeature organization.
You’ll then need to write the provider by implementing the Provider interface exported by the OpenFeature SDK.
import {
AnyProviderEvent,
EvaluationContext,
Hook,
JsonValue,
Logger,
Provider,
ProviderEventEmitter,
ResolutionDetails
} from'@openfeature/server-sdk';
// implement the provider interfaceclassMyProviderimplementsProvider {
// Adds runtime validation that the provider is used with the expected SDKpublicreadonly runsOn = 'server';
readonly metadata = {
name: 'My Provider',
} asconst;
// Optional provider managed hooks
hooks?: Hook[];
resolveBooleanEvaluation(flagKey: string, defaultValue: boolean, context: EvaluationContext, logger: Logger): Promise<ResolutionDetails<boolean>> {
// code to evaluate a boolean
}
resolveStringEvaluation(flagKey: string, defaultValue: string, context: EvaluationContext, logger: Logger): Promise<ResolutionDetails<string>> {
// code to evaluate a string
}
resolveNumberEvaluation(flagKey: string, defaultValue: number, context: EvaluationContext, logger: Logger): Promise<ResolutionDetails<number>> {
// code to evaluate a number
}
resolveObjectEvaluation<T extendsJsonValue>(flagKey: string, defaultValue: T, context: EvaluationContext, logger: Logger): Promise<ResolutionDetails<T>> {
// code to evaluate an object
}
// implement with "new OpenFeatureEventEmitter()", and use "emit()" to emit events
events?: ProviderEventEmitter<AnyProviderEvent> | undefined;
initialize?(context?: EvaluationContext | undefined): Promise<void> {
// code to initialize your provider
}
onClose?(): Promise<void> {
// code to shut down your provider
}
}
Built a new provider? Let us know so we can add it to the docs!
Develop a hook
To develop a hook, you need to create a new project and include the OpenFeature SDK as a dependency.
This can be a new repository or included in the existing contrib repository available under the OpenFeature organization.
Implement your own hook by conforming to the Hook interface.
importtype { Hook, HookContext, EvaluationDetails, FlagValue } from"@openfeature/server-sdk";
exportclassMyHookimplementsHook {
after(hookContext: HookContext, evaluationDetails: EvaluationDetails<FlagValue>) {
// code that runs when there's an error during a flag evaluation
}
}
Built a new hook? Let us know so we can add it to the docs!
The npm package @openfeature/server-sdk receives a total of 17,751 weekly downloads. As such, @openfeature/server-sdk popularity was classified as popular.
We found that @openfeature/server-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.It has 0 open source maintainers collaborating on the project.
Package last updated on 12 Mar 2024
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.
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
A malicious npm campaign is targeting Ethereum developers by impersonating Hardhat plugins and the Nomic Foundation, stealing sensitive data like private keys.