ngx-bugatlas
TypeScript icon, indicating that this package has built-in type declarations

18.0.4 • Public • Published

NgxBugatlas

codecov
The NgxBugatlas is designed to help monitor and manage errors in software applications. This is provides an overview of the system, setup instructions, and usage details to help you integrate this tool into your development angular applications.

Features

  • Capture and log errors as they occur in real-time across your applications.
  • A user-friendly dashboard to visualize errors and statistics.
  • Display exceptions, analytics and logs separately. It more helpful to findout errors
  • Can easily findout Applications, HTTP calls and bolckchain Errors.
  • Tracked the users how long time spent in each page.

Dependencies

ngx-bugatlas Angular
0.0.2 14
0.0.3 15
0.0.7 16
17.1.3 17
18.0.4 18

Install

npm i ngx-bugatlas

Setup

Module based

import { NgxBugatlasModule, NgxBugatlasService } from 'ngx-bugatlas';

@NgModule({
  imports: [ NgxBugatlasModule ],
   providers: [
    {
      provide: ErrorHandler,   
      useClass: MyErrorHandler,
    },
  ],
})

export class AppModule {
  constructor(
    private ngxBugatlasService : NgxBugatlasService,
  )
  {
    const data = {
      api_key:'API_KEY',
      secret_key:'SECRET_KEY',
    }
    this.ngxBugatlasService.seConfigKey(data);
  }
 }
 

Standalone

app.config.ts

import { ApplicationConfig } from '@angular/core';
import { HTTP_INTERCEPTORS, provideHttpClient } from '@angular/common/http';
import { provideAnimations } from '@angular/platform-browser/animations';
import { MyErrorHandler} from 'ngx-bugatlas';


export const appConfig: ApplicationConfig = {
  providers: [
    provideHttpClient(),
   {
      provide: ErrorHandler,
      useClass: MyErrorHandler,
    },

  ]
};
 
 app.component.ts
 @Component({
  selector: 'app-root',
  standalone: true,
  imports: [RouterOutlet, HttpClientModule],
  templateUrl: './app.component.html',
  styleUrl: './app.component.css'
})
export class AppComponent {

  protected bugatlasService = inject(NgxBugatlasService)
  constructor() {
    const data = {
      api_key: 'API_KEY',
      secret_key: 'SECRET_KEY',
    };
    this.bugatlasService.seConfigKey(data);
  }
}

Note: The API_KEY and SECRET_KEY will provided by our team

License

MIT

Website

bugatlas.com

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
18.0.460latest

Version History

VersionDownloads (Last 7 Days)Published
18.0.460
18.0.349
18.0.258
18.0.13
18.0.01
17.1.51
17.1.40
17.1.30
17.1.20
17.1.01
17.0.01
0.0.111
0.0.102
0.0.97
0.0.80
0.0.71
0.0.62
0.0.52
0.0.42
0.0.32
0.0.22

Package Sidebar

Install

npm i ngx-bugatlas

Homepage

bugatlas.com

Weekly Downloads

195

Version

18.0.4

License

MIT

Unpacked Size

98.7 kB

Total Files

24

Last publish

Collaborators

  • sparkout_tech