New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

ng-configcat-publicapi

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-configcat-publicapi

[![Public API Angular CI](https://github.com/configcat/ng-configcat-publicapi/actions/workflows/ng-configcat-publicapi-ci.yml/badge.svg?branch=master)](https://github.com/configcat/ng-configcat-publicapi/actions/workflows/ng-configcat-publicapi-ci.yml) ![

2.9.2
Version published
Maintainers
4
Created

ConfigCat Public API client for Angular (ng-configcat-publicapi)

Public API Angular CI License
NPM

ConfigCat Public API client for Angular. ConfigCat is a hosted feature flag service: https://configcat.com. Manage feature toggles across frontend, backend, mobile, desktop apps. Alternative to LaunchDarkly. Management app + feature flag SDKs.

The client is generated by Swagger Swagger from the ConfigCat Public API.

Getting Started

1. Install package:

via NPM package:

npm i ng-configcat-publicapi

2. Initialization:

In your Angular project:

Without configuring providers
import { ApiModule } from 'ng-configcat-publicapi';
import { HttpClientModule } from '@angular/common/http';

@NgModule({
    imports: [
        ApiModule,
        // make sure to import the HttpClientModule in the AppModule only,
        // see https://github.com/angular/angular/issues/20575
        HttpClientModule
    ],
    declarations: [ AppComponent ],
    providers: [],
    bootstrap: [ AppComponent ]
})
export class AppModule {}
With configuring providers
import { ApiModule, Configuration, ConfigurationParameters } from 'ng-configcat-publicapi';

export function apiConfigFactory (): Configuration => {
  const params: ConfigurationParameters = {
    // set configuration parameters here.
  }
  return new Configuration(params);
}

@NgModule({
    imports: [ ApiModule.forRoot(apiConfigFactory) ],
    declarations: [ AppComponent ],
    providers: [],
    bootstrap: [ AppComponent ]
})
export class AppModule {}

3. Usage:

import { ProductsService } from 'ng-configcat-publicapi';

export class AppComponent {
    constructor(private productsService: ProductsService) { }

    getProducts() {
       this.productsService.v1ProductsGet().subscribe(products => {
           // Do something with the products.
       });
    }
}

FAQs

Package last updated on 07 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts