@ohbug/angular
v2.0.11
Published
Ohbug SDK for Angular
Readme
@ohbug/angular
English | 简体中文
Installation
pnpm instal @ohbug/browser @ohbug/angularUsage
// app.module.ts
import Ohbug from "@ohbug/browser";
import { ErrorHandler } from "@angular/core";
import OhbugAngular from "@ohbug/angular";
const client = Ohbug.setup({ apiKey: "YOUR_API_KEY" });
@NgModule({
// others
providers: [OhbugAngular(client, ErrorHandler)],
})
export class AppModule {}