
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
angular-rollbar
Advanced tools
This package provides an Angular 2+ service for logging to Rollbar.
npm install angular-rollbar
This module relies on the official rollbar-browser
npm package. In addition, it has Angular >= 2 as a peer dependency.
import { RollbarModule, RollbarService } from 'angular-rollbar'
NgModule({
imports: [
RollbarModule.forRoot({
accessToken: 'YOUR ROLLBAR CLIENT TOKEN'
})
],
providers: [
{ provide: ErrorHandler, useClass: RollbarService }
]
})
export class MyAngularApp {}
Let the Angular DI do all the magic for you.
import { Component } from '@angular/core'
import { RollbarService } from 'angular-rollbar';
@Component(...)
export class MyComponent {
constructor (rollbar: RollbarService) {
rollbar.info('Logging to Rollbar!');
}
}
We are using Angular CLI to make things a little bearable.
npm install
npm test
This project is not affiliated in anyway with Rollbar Inc. We do like their service though.
FAQs
Angular 2+ Service for Rollbar error logging
The npm package angular-rollbar receives a total of 56 weekly downloads. As such, angular-rollbar popularity was classified as not popular.
We found that angular-rollbar 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.