Date of slack thread: 6/18/24
Anonymous: hi statsig team! I’m going through the client sdks > new javascript > expo support docs for my project, and I’m wondering, how can I get all the overrides and locally override values? attached are the docs I’m seeing under javascript maintenance mode > javascript, but I’m trying to find something analogous for my use case
Anonymous: my confusion is that the new javascript sdk doesn’t seem to have Statsig
object with the static methods in the screenshot above, and I don’t see any overrides methods on the StatsigClient
object
Tore (Statsig): Oh good point - we are missing documentation on the equivalent
Its actually in its own package now, @U022AA8A8D8/js-local-overrides which you will have to include, and then provide that adapter at initialization time, like this
https://github.com/statsig-io/js-client-monorepo/blob/main/packages/combo/src/tests/StatsigClientLocalOverrides.test.ts#L23
Anonymous: okay I’ll install @statsig/js-local-overrides
too and give that a shot, thank you!
Anonymous: @U01RAN2FKJP sorry, I have a quick follow-up! so I see all these methods on the adapter which is great, but is there a way to get all the overrides? we want a debug screen in our app for devs to view and toggle all their overrides
Anonymous: actually maybe I’ve answered my own question? it looks like statsigClient.getContext().values
might be what I’m looking for?
Tore (Statsig): Im not entirely sure, but we will work on updating the documentation to clarify