npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

featurit-sdk-angular

v0.3.1

Published

Angular SDK for FeaturIT

Readme

Featurit SDK for Angular

Angular wrapper of the Javascript client for the FeaturIT Feature Flag management platform.

Description

This package aims to simplify the integration of the FeaturIT API in an Angular project.

Getting started

Dependencies

  • "tslib": "^2.3.0"
  • "featurit-sdk-js-browser": "^0.2.1"

Installing

npm install featurit-sdk-angular --save

If you are using the AppModule approach, inside your app.module.ts add:

@NgModule({
  ...,
  imports: [
    ...,
    FeaturitModule.forRoot({
      tenantIdentifier: "your_tenant_subdomain",
      frontendApiKey: "your_frontend_api_key",
      refreshIntervalMinutes: 5,
      enableAnalytics: false,
      enableTracking: false,
      sendBrowserInfo: true,
    }),
  ],

If instead you are using the functional approach, inside your app.config.ts add:

export const appConfig: ApplicationConfig = {
  providers: [
    ...,
    provideFeaturit({
      tenantIdentifier: "your_tenant_subdomain",
      frontendApiKey: "your_frontend_api_key",
      refreshIntervalMinutes: 5,
      enableAnalytics: false,
      enableTracking: true,
      sendBrowserInfo: true,
    }),
  ]
};

Basic Usage

That's how you would use Featurit in one of your Angular components:

featureFlag: FeatureFlag = {
  name: 'Feat',
  active: false,
  version: 'default',
};

constructor(private featurit: FeaturitService) {
  ...
}

async ngOnInit() {
  this.featurit.setUserContext(this.userContext);

  await this.listenFeatureFlag();
}

private async listenFeatureFlag() {
  await this.featurit.init();

  this.featureFlag.active = this.featurit.isActive("YOUR_FEATURE_NAME");
  this.featureFlag.version = this.featurit.version("YOUR_FEATURE_NAME");

  // This part is optional but it will allow for automatic updates 
  // on the application when the feature flag changes 
  // are synced from the server.
  
  this.featurit.onChange(this.featureFlag).subscribe({
    next: (newFeatureFlag: FeatureFlag) => {
      console.log('AngularComponent: ', `Observed change, updating my value to ${JSON.stringify(newFeatureFlag)}`);
      this.featureFlag = newFeatureFlag;
    }
  });
}

If for some reason you need to send your api key credentials after the application has loaded, you can call the init method with the full configuration instead.

private async my_method() {
  const my_api_key = get_api_key_from_server();
  const my_user_context = get_user_context();
  
  await this.featurit.init({
    tenantIdentifier: "your_tenant_subdomain",
    frontendApiKey: my_api_key,
    refreshIntervalMinutes: 5,
    enableAnalytics: true,
    sendAnalyticsInterval: 1,
    enableTracking: true,
    sendBrowserInfo: true,
    featuritUserContext: my_user_context,
  });
}

Defining your FeaturitUserContext

In order to show different versions of a feature to different users, Featurit needs to know about the attributes your user has in a certain context.

You can define the context using the as follows:

const contextData: FeaturitUserContext = get_your_user_context_data();

this.featurit.setUserContext(contextData);

// This call is optional and will retrieve the new values for the feature flags inmediately.
await this.featurit.refresh();

Event Tracking

In order to track some event in your application, we need to initialize the Module with enableTracking set to true:

Here you will have to decide if you want to send additional browser info to the server with every event.


@NgModule({
  ...,
  imports: [
    ...,
  FeaturitModule.forRoot({
    tenantIdentifier: "your_tenant_subdomain",
    frontendApiKey: "your_frontend_api_key",
    refreshIntervalMinutes: 5,
    enableAnalytics: false,
    enableTracking: true,
    sendBrowserInfo: true,
  }),
],

// Once we initialize our Component, we can register global properties that will be tracked  
// with every person and event.
// We can also track the person associated with the event after setting the appropiate user context.
async ngOnInit() {
  // (OPTIONAL) We can register global properties that will be sent with every
  // Person and Tracking Event from now on.
  this.featurit.register("my-global-property", "my-global-property-value");

  this.featurit.setUserContext(this.userContext);
  
  // This line will define the person to track (do this after setting the user context).
  this.featurit.trackPerson();

  await this.listenFeatureFlag();
}

// The track method will be used to send a new tracking event to the server.
// We can add as many properties to our events as we want.

// Take into account that your properties can't start with an _underscore, as it is reserved.
this.featurit.track("my-event-name", {
  "my-event-property": "my-property-value",
});

// (OPTIONAL) Sometimes we want the event to be sent inmediately to the server,
// If so, we can use the following line:
this.featurit.flush();

Authors

FeaturIT

https://www.featurit.com

[email protected]