Deprecated
Migrate soon! Official support for statsig-js ended Jan 31, 2025.Breaking Changes
- The SDK now offers both a synchronous and asynchronous initialization and updateUser methods.
- The “getConfig” method has changed to “getDynamicConfig”
- When Bootstrapping, you’ll now have to pass the hash parameter as ‘djb2’
- The top-level static instance has moved to a static method, StatsigClient.instance()
- Overrides have moved into their own package: js-local-overrides
- Parameters for GDPR compliance have changed and been centralized
- The method to retrieve a stableID has changed
- The structure of cached values has changed, with implications on first-run experience
- Several StatsigOptions have changed
- Manual exposure logging methods have been deprecated (
getExperimentWithExposureLoggingDisabled
,checkGateWithExposureLoggingDisabled
). The checkGate and getExperiment methods now support a second argument to suppress exposure logging as shown here.
Initialization
Previously, the SDK employed a single method for initialization. However, we have recognized that waiting for a method call during app startup can be impractical. Consequently, we have introduced two distinct initialization approaches: one synchronous and one asynchronous. Synchronous initialization will leverage cache (if available), returning immediately. Data for subsequent sessions will then be fetched in the background. Asynchronous initialization, on the other hand, is awaitable and ensures that the most current data is fetched and used.getConfig is now getDynamicConfig
Make sure you update yourgetConfig
call sites to call the new method, getDynamicConfig
. In addition, DynamicConfig
and Layer
are no longer classes, but javascript objects. There are still convenience get
methods, which should remain unchanged.
Bootstrapping
If you are using a server SDK to bootstrap your js/react app, you will need to make some updates to how your server SDK generates values. One of the optimizations we made with this new js-client SDK was to remove thesha256
library for hashing gate/experiment names. Instead, we use a djb2
hash. By default, all server SDKs generate sha256
hashes of gate/experiment names in the getClientInitializeResponse
method. You will need to set the hash algorithm parameter to that method call to "djb2"
instead in order to bootstrap this new client SDK. One of the benefits to this hashing algorithm is it will make the entire payload smaller as well, so its a net win on package size, speed, and payload size for the SDK. This does not change any of the bucketing logic, only the obfuscation method used for the payload.
For example, if you are bootstrapping from a nodejs app, you will need to do:
Updating the User
Similar to initialization, theupdateUser
method now supports both synchronous and asynchronous approaches. Each method functions in the same manner as the initialization process.
View a full example on GitHub
Static Instance
In the previous SDK version, there was a top-level static interface for using Statsig. To enhance support for multiple instances, we have replaced this with a static method that retrieves an instance.Overrides
Previously, the client had top level methods for managing overrides for gates/configs/experiments/layers, etc. Now, this has been removed from the main SDK and is in its own package. You can implement your own overrides, or use@statsig/js-local-overrides
and plug it in as the local override adapter in StatsigOptions
GDPR
In certain use cases (consent management), it is necessary to suspend cache and network usage until the user grants specific permissions. Previously, the method for achieving this was somewhat fragmented. In the new SDK, these functionalities have been consolidated for improved coherence and ease of implementation.View a full example on GitHub
stableID and getStableID
statsig.getStableID()
no longer exists. You can get the stableID like this: myStatsigClient.getContext().stableID
The key for the stableID in local storage has changed. It is now a function of the SDK key used to initialize the sdk, which enables multiple instances of the SDK to coexist on a single page and not overlap with cached data. If you wish to keep the existing stableID, you should access it in local storage from the old key STATSIG_LOCAL_STORAGE_STABLE_ID
, and set it in customIDs
to override the stableID.
Cached Values
The structure of cached values has changed significantly, and there is no supported way to migrate from the old cached values to the new format. If you wish to pre-populate cached values, we recommend running the new SDK without issuing checks against it for some time before swapping to use it for all checks.Legacy StatsigOptions
The options to parameterize initialization of the SDK have changed. In some cases, the underlying features were removed or moved and can be enabled/disabled in a different way. In other scenarios, there is a new API for managing them. The following is a mapping of old options to their equivalents in the new sdk.disableErrorLogging
This feature does not exist in the new Javascript SDK, so there is no option to disable it.
disableAutoMetricsLogging
Moved to optional package @statsig/web-analytics
disableAllLogging
This is now referred to as StatsigOptions.disableLogging
disableCurrentPageLogging
This is now referred to as StatsigOptions.includeCurrentPageUrlWithEvents
disableLocalStorage
This is now referred to as StatsigOptions.disableStorage
localMode
This is now referred to as StatsigOptions.networkConfig.preventAllNetworkTraffic
loggingIntervalMillis
This is now referred to as StatsigOptions.loggingIntervalMs
loggingBufferMaxSize
Unchanged
environment
Unchanged
disableNetworkKeepalive
This is has been completely removed. Network requests can be controlled with StatsigOptions.networkConfig.networkOverrideFunc
api
This is now referred to as StatsigOptions.networkConfig.api
overrideStableID
stableID is now just part of StatsigUser.customIDs
. This brings it inline with Statsig server
SDKs and helps avoid mis-configuration between client and server
initTimeoutMs
Timeouts now live as part of theasync
call. eg:myStatsigClient.initializeAsync(1000); // 1 sec timeout
initializeValues
Replaced by the usage of StatsigEvaluationsDataAdapter
eventLoggingApi
Replaced by StatsigOptions.networkConfig.logEventUrl
prefetchUsers
Replaced by the usage of StatsigEvaluationsDataAdapter
initCompletionCallback
Replaced by the usage of StatsigClientEventEmitter
updateUserCompletionCallback
Replaced by the usage of StatsigClientEventEmitter
fetchMode
Replaced by the usage of StatsigEvaluationsDataAdapter
disableDiagnosticsLogging
There currently is no diagnostics logging in the new SDK
initRequestRetries
This is has been completely removed. Network requests can be controlled with StatsigOptions.networkConfig.networkOverrideFunc
ignoreWindowUndefined
No longer applicable
disableHashing
This is now referred to as StatsigOptions.networkConfig.initializeHashAlgorithm
logLevel
This has not been changed, but the enum values are no longer UPPERCASED
.
logger
Not yet supported
evaluationCallback
Replaced by the usage of StatsigClientEventEmitter