Docs · SDK · Angular

Install Brevwick in Angular.

Copy-paste the snippets below. Replace pk_test_demo with the public key from your project — find it under Project settings → Keys.

1. Install

Install the adapter alongside the core SDK.

npm install @tatlacas/brevwick-angular @tatlacas/brevwick-sdk

2. Wire the SDK

src/main.tsTypeScript

import { bootstrapApplication } from '@angular/platform-browser';
import { provideBrevwick } from '@tatlacas/brevwick-angular';
import { AppComponent } from './app/app.component';

bootstrapApplication(AppComponent, {
  providers: [
    provideBrevwick({ projectKey: 'pk_test_demo' }),
  ],
});

src/app/app.component.tsTypeScript

import { Component } from '@angular/core';
import { BrevwickFeedbackButtonComponent } from '@tatlacas/brevwick-angular';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [BrevwickFeedbackButtonComponent],
  template: `
    <main><!-- your app --></main>
    <bw-feedback-button position="bottom-right"></bw-feedback-button>
  `,
})
export class AppComponent {}

Verify

  • Run `ng serve` and open http://localhost:4200.
  • Click the floating feedback button.
  • Submit a test issue.
  • Confirm the issue lands in /app/issues.

Full guide: /docs/sdk/angular

Browse the registry for version history, source, and download counts.