mirror of
https://github.com/Unleash/unleash.git
synced 2025-06-14 01:16:17 +02:00
Makes it easier to edit code snippets. Additionally, adds lazy loading to reduce bundle size.
486 B
486 B
1. Install the SDK
npm install unleash-proxy-client
2. Initialize Unleash
const { UnleashClient } = require('unleash-proxy-client');
const unleash = new UnleashClient({
url: '<YOUR_API_URL>',
clientKey: '<YOUR_API_TOKEN>',
appName: 'unleash-onboarding-javascript',
refreshInterval: 5000,
});
unleash.start();
3. Check feature flag status
setInterval(() => {
console.log('Is enabled', unleash.isEnabled('<YOUR_FLAG>'));
}, 1000);