All Projects → configcat → js-sdk

configcat / js-sdk

Licence: MIT license
JavaScript frontend SDK for ConfigCat. ConfigCat is a hosted feature flag service: https://configcat.com. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to js-sdk

ld-scheduler
Schedule Launch Darkly flags on or off
Stars: ✭ 14 (-33.33%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle, featureflags, feature-flag
featurehub
FeatureHub - cloud native feature flags, A/B testing and remote configuration service. Real-time streaming feature updates. Provided with Java, JavaScript, Go, .Net, Android and Flutter SDKs.
Stars: ✭ 136 (+547.62%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle, remote-config, feature-flag
flagsmith-js-client
Javascript Client for Flagsmith. Ship features with confidence using feature flags and remote config. Host yourself or use our hosted version at https://www.flagsmith.com/
Stars: ✭ 42 (+100%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle, remote-config, feature-flag
flagsmith-java-client
Java Client for Flagsmith. Ship features with confidence using feature flags and remote config. Host yourself or use our hosted version at https://www.flagsmith.com/
Stars: ✭ 16 (-23.81%)
Mutual labels:  feature-flags, feature-toggles, remote-config, feature-flag
ld-redux
A library to integrate launch darkly with react redux
Stars: ✭ 33 (+57.14%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle, feature-flag
flagsmith
Open Source Feature Flagging and Remote Config Service. Host on-prem or use our hosted version at https://flagsmith.com/
Stars: ✭ 2,309 (+10895.24%)
Mutual labels:  feature-flags, feature-toggles, remote-config, feature-flag
Flipper
🐬 Beautiful, performant feature flags for Ruby.
Stars: ✭ 2,732 (+12909.52%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle, feature-flag
ruby-client
Ruby SDK client for Split Software
Stars: ✭ 22 (+4.76%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
eight ball
Ruby gem for querying feature flags
Stars: ✭ 17 (-19.05%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
laravel-rollout
A package to integrate rollout into your Laravel project.
Stars: ✭ 23 (+9.52%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
flagsmith-nodejs-client
Flagsmith Node JS Client. Flagsmith lets you manage features flags across web, mobile and server side applications. Get builds out faster. Control who has access to new features.
Stars: ✭ 13 (-38.1%)
Mutual labels:  feature-flags, remote-config, feature-flag
php-client
PHP SDK client for Split Software
Stars: ✭ 14 (-33.33%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
doorkeeper
A Feature Toggle for PHP
Stars: ✭ 16 (-23.81%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
Unleash
Unleash is the open source feature toggle service.
Stars: ✭ 4,679 (+22180.95%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
flipper
Feature Flipper, Feature Flags, Rollout Flags, Feature Toggles for Crystal
Stars: ✭ 21 (+0%)
Mutual labels:  feature-flags, feature-toggles, feature-flag
toggler
toggler is a feature flag service to decouple deployment, feature enrollment and experiments
Stars: ✭ 27 (+28.57%)
Mutual labels:  feature-flags, feature-toggles, feature-toggle
Tweek
Tweek - an open source feature manager
Stars: ✭ 268 (+1176.19%)
Mutual labels:  configuration, feature-flags, feature-toggles
Simple Settings
A simple way to manage your project settings.
Stars: ✭ 165 (+685.71%)
Mutual labels:  configuration, configuration-management
Microconfig
Modern tool for microservice configuration management
Stars: ✭ 180 (+757.14%)
Mutual labels:  configuration, configuration-management
java-server-sdk
LaunchDarkly Server-Side SDK for Java
Stars: ✭ 71 (+238.1%)
Mutual labels:  feature-flags, feature-toggles

ConfigCat SDK for JavaScript frontend applications

https://configcat.com

ConfigCat SDK for JavaScript provides easy integration for your application to ConfigCat.

About

Manage features and change your software configuration using ConfigCat feature flags , without the need to re-deploy code. A 10 minute trainable Dashboard allows even non-technical team members to manage features directly. Deploy anytime, release when confident. Target a specific group of users first with new ideas. Supports A/B/n testing and soft launching.

ConfigCat is a hosted feature flag service. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.

JS CI codecov Known Vulnerabilities Reliability Rating Tree Shaking License NPM

Getting Started

1. Install and import package:

via NPM package:

npm i configcat-js
import * as configcat from "configcat-js";

via CDN:

<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/configcat-js@latest/dist/configcat.min.js"></script>

2. Go to the ConfigCat Dashboard to get your SDK Key:

SDK-KEY

3. Create a ConfigCat client instance:

var configCatClient = configcat.createClient("#YOUR-SDK-KEY#");

We strongly recommend using the ConfigCat Client as a Singleton object in your application.

4. Get your setting value:

The Promise (async/await) way:

configCatClient.getValueAsync("isMyAwesomeFeatureEnabled", false)
.then((value) => {
    if(value) {
        do_the_new_thing();
    } else {
        do_the_old_thing();
    }
});

or the Callback way:

configCatClient.getValue("isMyAwesomeFeatureEnabled", false, (value) => {
    if(value) {
        do_the_new_thing();
    } else {
        do_the_old_thing();
    }
});

Getting user specific setting values with Targeting

Using this feature, you will be able to get different setting values for different users in your application by passing a User Object to getValue() or getValueAsync().

Read more about Targeting here.

const userObject = { identifier : "#USER-IDENTIFIER#" };
configCatClient.getValueAsync("isMyAwesomeFeatureEnabled", false, userObject)
.then((value) => {
    if(value) {
        do_the_new_thing();
    } else {
        do_the_old_thing();
    }
});

Sample/Demo apps

Polling Modes

The ConfigCat SDK supports 3 different polling mechanisms to acquire the setting values from ConfigCat. After latest setting values are downloaded, they are stored in the internal cache then all requests are served from there. Read more about Polling Modes and how to use them at ConfigCat Docs.

Sensitive information handling

The frontend/mobile SDKs are running in your users' browsers/devices. The SDK is downloading a config.json file from ConfigCat's CDN servers. The URL path for this config.json file contains your SDK key, so the SDK key and the content of your config.json file (feature flag keys, feature flag values, targeting rules, % rules) can be visible to your users. This SDK key is read-only, it only allows downloading your config.json file, but nobody can make any changes with it in your ConfigCat account.
Suppose you don't want your SDK key or the content of your config.json file visible to your users. In that case, we recommend you use the SDK only in your backend applications and call a backend endpoint in your frontend/mobile application to evaluate the feature flags for a specific application customer.
Also, we recommend using sensitive targeting comparators in the targeting rules of those feature flags that are used in the frontend/mobile SDKs.

Browser compatibility

This SDK should be compatible with all modern browsers.

The SDK is tested against the following browsers:

  • Chrome (stable, latest, beta)
  • Chromium (64.0.3282.0, 72.0.3626.0, 80.0.3987.0)
  • Firefox (latest, latest-beta, 84.0).

These tests are running on each pull request, before each deploy, and on a daily basis. You can view a sample run here.

Need help?

https://configcat.com/support

Contributing

Contributions are welcome. For more info please read the Contribution Guideline.

About ConfigCat

Troubleshooting

XMLHttpRequest module not defined/found:

Since the configcat-js SDK needs to download the feature flag and setting values from ConfigCat's servers via a HTTP GET request. The SDK uses XMLHttpRequest a built in object in all browsers. This way the package size is smaller instead of using a 3rd party library. The error above can appear in cases when the configcat-js SDK is used within a SSR (Server-Side Rendering) Universal application. In these cases we recommend using configcat-js-ssr or configcat-node.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].