@vexilla/client
TypeScript icon, indicating that this package has built-in type declarations

0.0.17 • Public • Published

Vexilla Client - JS/TS

This is the JS/TS client library for Vexilla, a static file based feature flag system.

Getting Started

To get started is easy.

Installation

Using npm or yarn, install the package. Typescript types are shipped with it.

npm install --save @vexilla/client

or

yarn add @vexilla/client

Setup

You will need to create a Client within your app. This optionally takes in the customInstanceHash for use with gradual rollout.

After creation, call fetchFlags. This can be chained from the constructor since it returns the client instance.

this.client = new VexillaClient({
  baseUrl: 'https://BUCKET_NAME.s3-website-AWS_REGION.amazonaws.com',
  environment: process.env.ENVIRONMENT,
  customInstanceHash: userId
});
this.client.getFlags('features.json', async (url: string) => {
  // This could be whatever http client you want
  const response = await axios.get(url)
  return response.data;
});

Notice how we use the callback method and axios by hand? This is done to allow the use of any http client without unnecessary dependencies.

If you would like a prebundled version using some of the popular clients you can use one of these:

Usage

Use the created client to check if a feature should be on.

client.should(FEATURE_NAME)

Full Example

import { VexillaClient } from '@vexilla/client';

export class FeatureFlagsService {
  private client;

  constructor() {
    this.client = new VexillaClient({
      baseUrl: 'https://BUCKET_NAME.s3-website-AWS_REGION.amazonaws.com',
      environment: process.env.ENVIRONMENT,
      customInstanceHash: userId
    });
    this.client.getFlags('features.json');
  }

  should(featureName) {
    return this.client?.should(featureName);
  }
}

What are Feature Flags?

Feature flags are useful for enabling or disabling parts of your application without having to redeploy. In some cases such as mobile applications, the redeploy could take up to a week.

See more about them here:

Feature Flags are also a fundamental building block for things such as A/B testing.

How does it work?

  1. You configure the Config UI with your hosting credentials. These are stored in LocalStorage. Your credentials should have a limited scope of permissions.

  2. You add environments to the Config UI.

  3. Then you add features. These can be a toggle or a gradual rollout.

  4. Then you upload the json to your static hosting provider. You can also download ot copy the JSON to your clipboard for other uses.

  5. Your applications include a client library as a dependency and the client consumes the JSON config.

  6. Finally your application uses the client you created to determine if a feature should be on.

Contributing

Support

If you are having issues, please open a Github Issue on the relevant repo. (client, app, docs, etc.).

Sponsors

No sponsors yet. This could be a link and icon for your company here.

LICENSE - MIT

Copyright 2021 Vexilla

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ARE.

Readme

Keywords

none

Package Sidebar

Install

npm i @vexilla/client

Weekly Downloads

162

Version

0.0.17

License

MIT

Unpacked Size

23.3 kB

Total Files

18

Last publish

Collaborators

  • cmgriffing