Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
angular-airbrake
Advanced tools
This package provides an Angular 2+ service for logging to Airbrake.
npm install angular-airbrake
This module relies on the official airbrake-js
npm package. In addition, it has Angular >= 2 as a peer dependency.
import { AirbrakeModule, AirbrakeService } from 'angular-airbrake'
NgModule({
imports: [
AirbrakeModule.forRoot({
// Your Airbrake options here, follow the Airbrake documentation
})
],
providers: [
{ provide: ErrorHandler, useClass: AirbrakeService }
]
})
export class MyAngularApp {}
Let the Angular DI do all the magic for you.
import { Component } from '@angular/core'
import { AirbrakeService } from 'angular-airbrake';
@Component(...)
export class MyComponent {
constructor (airbrake: AirbrakeService) {
airbrake.error('Logging to Airbrake!');
}
}
We are using Angular CLI to make things a little bearable.
npm install
npm test
This project is not affiliated in anyway with Airbrake.
FAQs
Angular 2+ Service for Airbrake error logging
We found that angular-airbrake demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.