@ops-ai/react-feature-flags-toggly
v1.2.0
Published
Provides feature flags support for React applications allowing you to enable and disable features easily. Can be used with or without Toggly.io.
Readme
Lightweight package that provides feature flags support for React applications allowing you to check feature status and enable/disable them easily.
Can be used WITH or WITHOUT Toggly.io.
What is a Feature Flag
A feature flag (or toggle) in software development provides an alternative to maintaining multiple feature branches in source code. A condition within the code enables or disables a feature during runtime.
In agile settings the feature flag is used in production, to switch on the feature on demand, for some or all the users. Thus, feature flags make it easier to release often. Advanced roll out strategies such as canary roll out and A/B testing are easier to handle.
Installation
Simply install use NPM to install this package.
$ npm i -s @ops-ai/react-feature-flags-togglyBasic Usage (with Toggly.io)
Import createTogglyProvider in your index file.
import { createTogglyProvider } from '@ops-ai/react-feature-flags-toggly'Create a TogglyProvider with your App Key & Environment name from your Toggly application page.
const TogglyProvider = await createTogglyProvider({
appKey: 'your-app-key', // You can find this in Toggly.io
environment: 'your-environment-name', // You can find this in Toggly.io
})Wrap your App component with the newly created TogglyProvider.
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement,
)
root.render(
<React.StrictMode>
<TogglyProvider>
<App />
</TogglyProvider>
</React.StrictMode>,
)Using this package with Toggly allows you to define custom feature rollouts.
Custom rollouts offers the ability to show features only to certain groups of users based on various custom rules which you can define in Toggly.
In case you want to support custom feature rollouts, remember to provide an unique identity string for each user to make sure they get the same feature values on future visits.
const TogglyProvider = await createTogglyProvider({
appKey: 'your-app-key', // You can find this in Toggly.io
environment: 'your-environment-name', // You can find this in Toggly.io
identity: 'unique-user-identifier', // Use this in case you want to support custom feature rollouts
})Now you can start using the Feature component anywhere in your application by importing the Feature component.
import { Feature } from '@ops-ai/react-feature-flags-toggly'<Feature featureKey={'firstFeature'}>
<p>This feature can be turned on or off.</p>
</Feature>You can also check multiple feature keys and make use of the requirement (all/any) and negate (bool) options (requirement is set to "all" by default).
<Feature featureKeys={['firstFeature', 'secondFeature']}>
<p>ALL the provided feature keys are TRUE.</p>
</Feature><Feature featureKeys={['firstFeature', 'secondFeature']} requirement={'any'}>
<p>AT LEAST ONE the provided feature keys is TRUE.</p>
</Feature><Feature featureKeys={['firstFeature', 'secondFeature']} negate={false}>
<p>NONE of the provided feature keys is TRUE.</p>
</Feature>Basic Usage (without Toggly.io)
Import createTogglyProvider in your index file.
import { createTogglyProvider } from '@ops-ai/react-feature-flags-toggly'Create a TogglyProvider and provide your feature defaults.
const featureDefaults = {
mainDescription: true,
documentationItem: true,
toolingItem: true,
}
const TogglyProvider = await createTogglyProvider({
featureDefaults: featureDefaults
})Wrap your App component with the newly created TogglyProvider.
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement,
)
root.render(
<React.StrictMode>
<TogglyProvider>
<App />
</TogglyProvider>
</React.StrictMode>,
)Now you can start using the Feature component anywhere in your application by importing the Feature component.
import { Feature } from '@ops-ai/react-feature-flags-toggly'<Feature featureKey={'firstFeature'}>
<p>This feature can be turned on or off.</p>
</Feature>You can also check multiple feature keys and make use of the requirement (all/any) and negate (bool) options (requirement is set to "all" by default).
<Feature featureKeys={['firstFeature', 'secondFeature']}>
<p>ALL the provided feature keys are TRUE.</p>
</Feature><Feature featureKeys={['firstFeature', 'secondFeature']} requirement={'any'}>
<p>AT LEAST ONE the provided feature keys is TRUE.</p>
</Feature><Feature featureKeys={['firstFeature', 'secondFeature']} negate={false}>
<p>NONE of the provided feature keys is TRUE.</p>
</Feature>Extensibility with Hooks
Toggly provides a powerful hooks system that allows you to extend SDK functionality by hooking into feature flag lifecycle events. This is perfect for integrating with analytics, monitoring tools, or implementing custom behaviors.
What are Hooks?
Hooks let you execute custom code at specific points in the feature flag evaluation lifecycle:
- beforeEvaluation: Called before a feature flag is evaluated
- afterEvaluation: Called after a feature flag is evaluated (with the result)
- beforeIdentify: Called before user identity is set or cleared
- afterIdentify: Called after user identity is set or cleared
- afterRefresh: Called after feature definitions are refreshed from Toggly
Creating a Hook
A hook is an object that implements the Hook interface from @ops-ai/toggly-hooks-types:
import { Hook } from '@ops-ai/toggly-hooks-types';
const myAnalyticsHook: Hook = {
getMetadata: () => ({
name: 'MyAnalyticsHook',
version: '1.0.0'
}),
afterEvaluation: async (data) => {
// Send to analytics
analytics.track('Feature Flag Evaluated', {
feature: data.featureKey,
enabled: data.result,
userId: data.userId
});
},
afterIdentify: async (data) => {
// Update analytics user context
analytics.identify(data.userId, data.context);
}
};Registering Hooks
You can register hooks in two ways:
1. During initialization:
const TogglyProvider = await createTogglyProvider({
appKey: 'your-app-key',
environment: 'your-environment-name',
hooks: [myAnalyticsHook, myMonitoringHook]
});2. At runtime using the service:
import { useToggly } from '@ops-ai/react-feature-flags-toggly';
function MyComponent() {
const { togglyService } = useToggly();
useEffect(() => {
// Add a hook
togglyService.addHook(myAnalyticsHook);
// Cleanup: remove hook on unmount
return () => {
togglyService.removeHook(myAnalyticsHook);
};
}, [togglyService]);
return <div>...</div>;
}Hook Execution Order
When multiple hooks are registered:
- before hooks execute in FIFO order (first registered, first executed)
- after hooks execute in LIFO order (last registered, first executed)
This creates a "wrap" pattern where the first hook to start is the last to finish.
Error Isolation
Hooks are designed to be safe:
- If a hook throws an error, it won't affect feature flag evaluation
- Other hooks will continue to execute
- Errors are logged but don't propagate to your application code
Performance
Hooks are optimized for minimal performance impact:
- Hooks execute asynchronously without blocking evaluation
- Hook execution is extremely fast (typically < 1ms per hook)
- Multiple hooks can be registered without significant overhead
Common Use Cases
Analytics Integration:
const clarityHook: Hook = {
getMetadata: () => ({ name: 'Microsoft Clarity', version: '1.0.0' }),
afterEvaluation: async (data) => {
if (typeof clarity !== 'undefined') {
clarity('event', `FeatureFlag:${data.featureKey}`);
}
}
};Debug Logging (Development Only):
const debugHook: Hook = {
getMetadata: () => ({ name: 'DebugLogger', version: '1.0.0' }),
afterEvaluation: async (data) => {
if (process.env.NODE_ENV === 'development') {
console.debug('[Toggly]', data.featureKey, '=', data.result);
}
}
};React Component Hook Integration:
function useFeatureFlagAnalytics() {
const { togglyService } = useToggly();
useEffect(() => {
const analyticsHook: Hook = {
getMetadata: () => ({ name: 'Analytics', version: '1.0.0' }),
afterEvaluation: async (data) => {
// Your analytics logic
trackEvent('feature_evaluated', {
feature: data.featureKey,
result: data.result
});
}
};
togglyService.addHook(analyticsHook);
return () => togglyService.removeHook(analyticsHook);
}, [togglyService]);
}Find out more about Toggly.io
Visit our official website or check out a video overview of our product.
