Parameter Stores
Parameter Stores provide a new way to organize and manage parameters in your web or mobile app via the Statsig console. Now available for JS, React, React Native, Android, iOS, and Dart SDKs on the client side and java, node, python, and rust on the server side. Let us know in Slack if you'd like support in a certain language soon.
What is a Parameter Store?
Rather than thinking in terms of Statsig entities like Feature Gates, Experiments, Layers, or Dynamic Configs, Parameter Stores let you focus on parameters—the values in your app that need to be configurable remotely.
Parameter Stores decouple your code from configuration, indefinitely. This abstraction allows you to run experiments, adjust gating, or change values on the fly— without hardcoding any experiment/gate names. Instead you define parameters that can be remapped remotely to any value or any Statsig entity.
An Example: Parameterizing the Statsig Website
While usually release cycles are more painful on platforms like mobile, take the example of the Statsig Website - perhaps our marketing team asks for frequent updates, so we'd prefer to parameterize the text, images, buttons, colors and more:

When the time comes to run an experiment, we can point these variables directly at experiments - starting an A/B test without writing a line of code:

Now, you've begun an experiment on your tagline, without ever making a code change. You continue to access the parameter in-code like this:
const homepageStore = StatsigClient.getParameterStore("www_homepage");
const tagline = homepageStore.get("tagline", <optional_default_value>);