JavaScript Client SDK (Web)
Supported Features
Working with the SDK
Checking a Feature Flag/Gate
Now that your SDK is initialized, let's check a Feature Gate. Feature Gates can be used to create logic branches in code that can be rolled out to different users from the Statsig Console. Gates are always CLOSED or OFF (think return false;
) by default.
Reading a Dynamic Config
Feature Gates can be very useful for simple on/off switches, with optional but advanced user targeting. However, if you want to be able send a different set of values (strings, numbers, and etc.) to your clients based on specific user attributes, e.g. country, Dynamic Configs can help you with that. The API is very similar to Feature Gates, but you get an entire json object you can configure on the server and you can fetch typed parameters from it. For example:
See Typed Getters to learn more about accessing values.
Getting a Layer/Experiment
Then we have Layers/Experiments, which you can use to run A/B/n experiments. We offer two APIs, but we recommend the use of layers to enable quicker iterations with parameter reuse.
See Typed Getters to learn more about accessing values.
Logging an Event
Now that you have a Feature Gate or an Experiment set up, you may want to track some custom events and see how your new features or different experiment groups affect these events. This is super easy with Statsig - simply call the Log Event API for the event, and you can additionally provide some value and/or an object of metadata to be logged together with the event:
Learn more about identifying users, group analytics, and best practices for logging events in the logging events guide.
Typed Getters
The Layer
, Experiment
and DynamicConfig
objects all support a "typed" get
method. This method can help avoid issues where a
value is not the type you expect.
For example, imagine we have a Dynamic Config with a single number
value called "my_value"
:
// { "my_value": 1 }
const myDynamicConfig = myStatsigClient.getDynamicConfig("a_config");
const myFallbackValue = myDynamicConfig.get("my_value", "fallback"); // returns: "fallback"
const myTypedValue = myDynamicConfig.get("my_value", 0); // returns: 1
const myRawValue = myDynamicConfig.get("my_value"); // returns: 1
Because "my_value"
points to a number
but in the myFallbackValue
case,
we are calling .get
with a string
fallback value, the fallback is being returned.
In the myTypedValue
case, we are passing a number
fallback value, and since "my_value"
is
also a number
, the actual value of 1
is returned.
If typing is not important to you, the fallback argument can be omitted, and
the SDK will simply return the value. This is highlighted in the myRawValue
case.
Evaluation Details
When you receive a value, it may be useful to know how the SDK came to that result.
For this purpose, on every Statsig type there exists a way to check the EvaluationDetails
object.
This object contains the following fields:
Reason
: This is a string containing the source as well as whether or not the specific config was found.Network:Recognized
means the SDK has the latest values and found an entry for the config.Cache:Unrecognized
means we are working with cached values, are could not find the given config.- For the full list of possible combinations, see the page on Debugging.
lcut
: Last Config Update Time - This is the unix timestamp for when any configuration in your project changed.- lcut works as a version number for you project. If it changes, values are deemed out of date and possibly need to be refetched.
receivedAt
: This is the unix timestamp of when the SDK received these values. This can be useful in knowing how old your cache is.
Code Examples
Prefer seeing it in practice? Included in the open source repository are some Code Examples. View these for common use cases for the SDK.
Parameter Stores
Parameter Stores hold a set of parameters for your mobile app. These parameters can be remapped between Statsig entities (Feature Gates, Experiments, and Layers), so you can decouple your code from the configuration in Statsig.
You can read more about the concept here.
Getting a Parameter Store
To fetch a set of parameters, use the following api:
const homepageStore = myStatsigClient.getParameterStore("homepage");
Getting a parameter
You can then access parameters like this:
const title = homepageStore.get(
"title", // parameter name
"Welcome", // default value
);
const showUpsell = homepageStore.get(
"upsell_upgrade_now",
false,
);
Statsig User
You should provide a StatsigUser object whenever possible when initializing the SDK, passing as much information as possible in order to take advantage of advanced gate and config conditions (like country or OS/browser level checks).Most of the time, the userID
field is needed in order to provide a consistent experience for a given
user (see logged-out experiments to understand how to correctly run experiments for logged-out
users).
Besides userID
, we also have email
, ip
, userAgent
, country
, locale
and appVersion
as top-level fields on
StatsigUser. In addition, you can pass any key-value pairs in an object/dictionary to the custom
field and be able to
create targeting based on them.
Private Attributes
Have sensitive user PII data that should not be logged? No problem, we have a solution for it! On the StatsigUser object we also have a field called privateAttributes
, which is a simple object/dictionary that you can use to set private user attributes. Any attribute set in privateAttributes
will only be used for evaluation/targeting, and removed from any logs before they are sent to Statsig server.
For example, if you have feature gates that should only pass for users with emails ending in "@statsig.com", but do not want to log your users' email addresses to Statsig, you can simply add the key-value pair { email: "my_user@statsig.com" }
to privateAttributes
on the user and that's it!
Updating Users
At some point, you will probably need to change the StatsigUser being used by the Statsig client. To do this you need to call await updateUserAsync
which will fetch the new values for the updated user.
In advanced use cases, you may want to Prefetch or Bootstrap (provide) values for a different set of user properties. See Using EvaluationsDataAdapter to learn more.
Prefetching Users
In some cases, it can be useful to prefetch values for a given user, such that switching to that user later can be done synchronously.
To do this, you would call prefetchData
and then later updateUserSync
.
Statsig Options
loggingEnabled LoggingEnabledOption
Controls whether logging is enabled and in which environments. Options are:
LoggingEnabledOption.browserOnly
("browser-only"
) - This is the default behavior. Log events in browser environments, skipping it when running on a server. This is the recommended option for websites, whether it's client-side rendered or server-side renderedLoggingEnabledOption.disabled
("disabled"
) - Prevents collecting and sending any events over the networkLoggingEnabledOption.always
("always"
) -Enables logging in all environments (browser and non-browser like Chrome extensions, CLIs, etc.)default:
LoggingEnabledOption.browserOnly
disableLogging boolean
(deprecated)
Prevents collecting and sending any events over the network. This is useful for secure deployments where you want to completely disable analytics tracking.
Deprecated: Use
loggingEnabled: LoggingEnabledOption.disabled
instead.default:
false
disableStableID boolean
Prevents the SDK from generating and using a stable device ID. Use this when you want to disable any device-level identification.
default:
false
disableEvaluationMemoization boolean
Disables caching of evaluation results. When enabled, each call to checkGate, getConfig, etc. will re-evaluate the condition rather than using a cached result.
default:
false
initialSessionID string
Overrides the initial session ID used by the SDK. By default, the SDK generates a random session ID.
Note: Sessions still expire and will be replaced with an auto-generated SessionID.
enableCookies boolean
Enables the use of cookies for storing the stable ID. This is useful for cross-domain tracking.
default:
false
disableStorage boolean
Prevents writing anything to storage.
Note: caching will not work if storage is disabled
networkConfig object
Allows for fine grained control over which api or urls are hit for specific Statsig network requests
See NetworkConfig object
api string
The API to use for all SDK network requests. You should not need to override this unless you have a custom API that implements the Statsig endpoints.
Note: You need to include /v1 on the end of your custom API. eg
https://my-custom-api.com/v1
logEventUrl string
The URL used to flush queued events via a POST request. Takes precedence over
NetworkConfig.api
.default:
https://prodregistryv2.org/v1/rgstr
logEventFallbackUrls string[]
A list of URLs to try if the primary logEventUrl fails. This provides fallback options for event logging in case the primary endpoint is unavailable.
default:
[]
networkTimeoutMs number
The maximum amount of time (in milliseconds) that any network request can take before timing out.
default:
10,000 ms
(10 seconds)
preventAllNetworkTraffic boolean
Prevents any network requests being made. Useful for secure deployments where the browser is not allowed to send requests to external domains.
Note: When using this option, you may see "Failed to flush events" warnings in the console. To prevent these warnings, also set
disableLogging: true
in your StatsigOptions.
networkOverrideFunc function
Overrides the default networking layer used by the Statsig client. By default, the client use
fetch
, but overriding this you could useaxios
or rawXMLHttpRequest
default:
fetch
initializeUrl string
The URL used to fetch the latest evaluations for a given user. Takes precedence over
NetworkConfig.api
.default:
https://featureassets.org/v1/initialize
environment StatsigEnvironment
An object you can use to set environment variables that apply to all of your users in the same session.
logLevel LogLevel
How much information is allowed to be printed to the console.
default:
LogLevel.Warn
loggingBufferMaxSize number
The maximum number of events to batch before flushing logs to Statsig.
default:
50
loggingIntervalMs number
How often (in milliseconds) to flush logs to Statsig.
default:
10,000 ms
(10 seconds)
overrideAdapter OverrideAdapter
An implementor of OverrideAdapter, used to alter evaluations before its returned to the caller of a check api (checkGate/getExperiment etc).
includeCurrentPageUrlWithEvents boolean
(Web only) Should the 'current page' url be included with logged events.
default:
true
disableStatsigEncoding boolean
Whether or not Statsig should use raw JSON for network requests where possible.
default:
false