0.1.2 • Published 1 year ago

@flag.io/sdk v0.1.2

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

flag.io SDK

Biblioteca onde pode ser recuperada todas as informações de feature flags

const { setup } = require("flag.io-core");

const flagsApi = setup({
  token: "ZGNa6pGrKW7vM1WWV8osvw==",
  environment: "test",
  projectId: "03b6f890-fcd7-452a-aa25-58c8a204927b",
});

type FlagProps = {
  name: string;
  description?: string;
  active: boolean;
  disabled: boolean;
}

const testFlag: FlagProps = await flagsApi.getEnv("TEST_FLAG");
if (testFlag.active) {
  // Do something cool!
}
0.1.2

1 year ago

0.1.1

1 year ago

0.1.0

1 year ago