Frequently Asked Questions

A curated summary of the top questions asked on our Slack community, often relating to implementation, functionality, and building better products generally.
Statsig FAQs
Brex Notion OpenAI affirm Microsoft ea Univision Plex Whatnot Go1 Found NoCap
GENERAL

How can I initialize the Statsig SDK in a Cloudflare Worker?

Date of slack thread: 5/17/24

Anonymous: Hi, I’m trying to initialize statsig in a cloudworker pages function - I’ve tried two things:

import {Statsig} from "statsig-node";
await Statsig.initialize(ctx.env.STATSIG_SDK_KEY,{environment: ...

here I got the error Cannot read properties of undefined (reading 'initialize')

I next tried

import Statsig from "statsig-js";
await Statsig.initialize(ctx.env.STATSIG_SDK_KEY, {
        userID: ...
    }, {
        environment: ...

here I got a different error: import_statsig_js2.default.initialize is not a function

Statbot: To initialize Statsig in a Cloudflare Workers environment, you should be aware that if you are unable to initialize Statsig outside of a serverless function, you will incur a server round trip to Statsig servers to initialize the SDK in every function invocation. After initialization, all checks should be locally evaluated in the function. Additionally, you need to ensure any enqueued events are flushed to Statsig prior to the function exiting by calling statsig.flush().

Here’s an example of how you might initialize Statsig in a Cloudflare Worker:

import Statsig from "statsig-node";  
await Statsig.initialize("server-secret-key");  
// Your Cloudflare Worker logic here  
await Statsig.flush();

Remember to replace "server-secret-key" with your actual server secret key from the Statsig console. Also, do not expose your server secret key in client-side applications or any external facing documents. If you accidentally exposed it, you can create a new one in the Statsig console.

If this approach does not work for you, consider reaching out to the Statsig team through their Slack community to discuss custom integration options that may better suit your architecture and requirements source.

Anonymous: Is this a known issue that cloudflare’s runtime is different enough that I cannot work with statsig? Is there a different approach I should try?

Vijaye (Statsig): Try:

import Statsig from "statsig-node"

Anonymous: That did the trick! Thanks Vijaye (Statsig)

Anonymous: Typescript was pretty sure that it wanted Curley braces there, any idea why that is?

Statbot: This thread has been marked as resolved. Press below to re-open.

Vijaye (Statsig): No idea why Typescript misled you there.

Join the #1 experimentation community

Connect with like-minded product leaders, data scientists, and engineers to share the latest in product experimentation.

Try Statsig Today

Get started for free. Add your whole team!

What builders love about us

OpenAI OpenAI
Brex Brex
Notion Notion
SoundCloud SoundCloud
Ancestry Ancestry
At OpenAI, we want to iterate as fast as possible. Statsig enables us to grow, scale, and learn efficiently. Integrating experimentation with product analytics and feature flagging has been crucial for quickly understanding and addressing our users' top priorities.
OpenAI
Dave Cummings
Engineering Manager, ChatGPT
Brex's mission is to help businesses move fast. Statsig is now helping our engineers move fast. It has been a game changer to automate the manual lift typical to running experiments and has helped product teams ship the right features to their users quickly.
Brex
Karandeep Anand
President
At Notion, we're continuously learning what our users value and want every team to run experiments to learn more. It’s also critical to maintain speed as a habit. Statsig's experimentation platform enables both this speed and learning for us.
Notion
Mengying Li
Data Science Manager
We evaluated Optimizely, LaunchDarkly, Split, and Eppo, but ultimately selected Statsig due to its comprehensive end-to-end integration. We wanted a complete solution rather than a partial one, including everything from the stats engine to data ingestion.
SoundCloud
Don Browning
SVP, Data & Platform Engineering
We only had so many analysts. Statsig provided the necessary tools to remove the bottleneck. I know that we are able to impact our key business metrics in a positive way with Statsig. We are definitely heading in the right direction with Statsig.
Ancestry
Partha Sarathi
Director of Engineering
We use cookies to ensure you get the best experience on our website.
Privacy Policy