Skip to content

Latest commit

 

History

History

ohbug-angular

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

@ohbug/angular

npm npm bundle size

English | 简体中文

Installation

pnpm instal @ohbug/browser @ohbug/angular

Usage

// 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 {}