Skip to main content
Github Repository

Setup the SDK

1

Install the SDK

The Node.js SDK is hosted here. You can install the SDK using NPM or Yarn:
2

Initialize the SDK

After installation, you will need to initialize the SDK using a Server Secret Key from the Statsig console.
Do NOT embed your Server Secret Key in client-side applications, or expose it in any external-facing documents. However, if you accidentally expose it, you can create a new one in the Statsig console.
initialize will perform a network request. After initialize completes, virtually all SDK operations will be synchronous (See Evaluating Feature Gates in the Statsig SDK). The SDK will fetch updates from Statsig in the background, independently of your API calls.

Working with the SDK

Checking a Feature Flag/Gate

Now that your SDK is initialized, let’s fetch 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. From this point on, all APIs will require you to specify the user (see Statsig user) associated with the request. For example, check a gate for a certain user like this:

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.

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.

Retrieving Feature Gate Metadata

In certain scenarios, you may need more information about a gate evaluation than just a boolean value. For additional metadata about the evaluation, use the Get Feature Gate API, which returns a FeatureGate object:

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 and specify the user and event name to log; you 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.

Statsig User

When calling APIs that require a user, you should pass as much information as possible in order to take advantage of advanced gate and config conditions (like country or OS/browser level checks), and correctly measure impact of your experiments on your metrics/events. At least one identifier, either userID or a Custom ID, is required to provide a consistent experience for a given user (as explained here). 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. Note that while typing is lenient on the StatsigUser object to allow you to pass in numbers, strings, arrays, objects, and potentially even enums or classes, the evaluation operators will only be able to operate on primitive types - mostly strings and numbers. While we attempt to smartly cast custom field types to match the operator, we cannot guarantee evaluation results for other types. For example, setting an array as a custom field will only ever be compared as a string - there is no operator to match a value in that array.

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!

Statsig Options

initialize() takes an optional parameter options in addition to the secret key that you can provide to customize the Statsig client. Here are the current options and we are always adding more to the list: initialize() takes an optional parameter options in addition to the secret key that you can provide to customize the Statsig client. Here are the current options and we are always adding more to the list:
string
default:"https://statsigapi.net/v1"
The base url to use for all network requests. Defaults to the statsig API.
StatsigEnvironment
default:"null"
An object you can use to set environment variables that apply to all of your users in the same session and will be used for targeting purposes.The most common usage is to set the environment tier (‘production’, ‘staging’ or ‘development’), e.g. { tier: 'staging' }, and have feature gates pass/fail for specific environments. Since v6.0.0 default environment tier is production
string
default:"null"
A string that represents all rules for all feature gates, dynamic configs and experiments. It can be provided to bootstrap the Statsig server SDK at initialization in case your server runs into network issue or Statsig server is down temporarily.
function
default:"null"
A callback function that’s called whenever we have an update for the rules; it’s called with a JSON string (used as is for bootstrapValues mentioned above) and a timestamp, like below:
LoggerInterface
default:"console.log"
The logger interface to use for printing to stdout/stderr
boolean
default:"false"
Disables all network access, so the SDK will only return default (or overridden) values. Useful in testing.
number
default:"0"
Sets a maximum time to wait for the config download network request to resolve before considering the SDK initialized and resolving the call to initialize()
IDataAdapter
default:"null"
An adapter with custom storage behavior for config specs. Can be used to bootstrap Statsig server (takes priority over bootstrapValues). Can also be used to continuously fetch updates in place of the Statsig network. See Data Stores.For example, see our 1P implementation via Redis statsig-node-redis.
IUserPersistentStorage
default:"nil"
A persistent storage adapter for running sticky experiments. See examples.
number
default:"10000"
Sets the polling interval for the SDK to ask Statsig backend for changes on the rulesets.
number
default:"60000"
Sets the polling interval for the SDK to ask Statsig backend for changes on the ID Lists.
number
default:"60000"
Sets the interval for the SDK to periodically flush all logging events to Statsig backend.
number
default:"1000"
Sets the maximum number of events the SDK’s logger will batch before flushing them all to Statsig backend.
boolean
default:"false"
Disables diagnostics events from being logged and sent to Statsig
'await' | 'lazy' | 'none'
default:"'await'"
Method of initializing IP to country lookup on statsig.initialize().
'await' | 'lazy' | 'none'
default:"'await'"
Method of initializing ID lists on statsig.initialize().
number
default:"5"
The maximum number of retry attempts when sending /log_event requests to Statsig server
number | (retry: number) => number
default:"1000"
A fixed number or callback on the retry attempt number to configure the time in ms to wait between each /log_event retry.If using a fixed number, a 10x multiplier will be applied on each subsequent retry
EvaluationCallbacks
default:"{}"
Provides callback functions for handling custom logic during evaluations of gates, dynamic configs, experiments, or layers. You can provide specific callbacks for each evaluation type to perform tasks such as custom logging (if you prefer not to use Statsig’s default logging), or side effects.Note: if you’d like to turn off Statsig’s default logging, set disableExposureLogging: true when making checks.Available callbacks:

Shutdown

To gracefully shutdown the SDK and ensure all events are flushed:

Flush

To manually flush logged events:

Client SDK Bootstrapping

The Statsig server SDK can be used to generate the initialization values for a client SDK. This is useful for server-side rendering (SSR) or when you want to pre-fetch values for a client.

Local Overrides

You can override the values returned by the SDK for testing purposes. This can be useful for local development when you want to test specific scenarios.
These can be used to set an override for a specific user, or for all users (by not providing a specific user ID). Experiments/Autotune are overridden with the overrideConfig API.

Overriding in getClientInitializeResponse

You can also override feature gates, dynamic configs, experiments, and layers when calling getClientInitializeResponse. This is useful when you need to provide specific values to the client SDK.
For experiments, you can override them in two ways:
  1. By setting a value override on their dynamic config to directly specify the parameter values
  2. By setting the groupName assignment to use the value for that group name (e.g., “Control” or “Test”)
You can also combine both approaches to override both the group assignment and the parameter values.

Manual Exposures

Statsig SDKs automatically log an exposure event every time a gate/experiment/config is checked. In some scenarios, you may want to control when to log an exposure. You can disable the automatic logging like this:

Gates

Then, to manually log the exposure:

Dynamic Configs

Then, to manually log the exposure:

Experiments

Then, to manually log the exposure:

Layers

Then, to manually log the layer parameter exposure:

Cloudflare Workers Setup

Polling for updates

The SDK cannot poll for updates across requests since Cloudflare does not allow for timers. To solve for this, a manual sync API is available for independently updating the SDK internal store.

Flushing events

The SDK enqueues logged events and flushes them in batches. In order to ensure events are properly flushed, we recommend calling flush using context.waitUntil. This will keep the request handler alive until events are flushed without blocking the response.

Node.JS Compatibility

Many native JavaScript API and Node standard libraries can be accessed in Cloudflare via the nodejs_compat compatibility flag. The SDK is now compatible with nodejs_compat (since v5.16.0). In older versions, manual polyfilling is required.

User Persistent Storage

User Persistent Storage is a storage adapter for running sticky experiments. It allows you to persist user assignments across sessions.

Interface

Example Implementation

Multi-Instance Usage

If you need to create multiple independent instances of the Statsig SDK (for example, to use different API keys or configurations), you can use the instance-based approach:

Forward Proxy Configuration

You can configure the SDK to use a forward proxy for network requests:

FAQs

How can I use the node SDK for server side rendering?

See Client SDK Bootstrapping | SSR

How can I mock Statsig for testing?

See LocalOverrides

Reference

Type StatsigUser

Type StatsigOptions

Type FeatureGate

Type DynamicConfig

Type Layer

DataAdapter

EvaluationDetails

EvaluationReason