
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
ng-stackdriver-errors
Advanced tools
Client-side AngularJS library for Stackdriver Error Reporting

"Fear is the way to the dark side. Fear leads to anger, anger leads to hatred, hatred leads to suffering."
-- Yoda
Download make the dependencies of simpleGridMaterial and include in your project
$ npm install ng-stackdriver-errors --save
require('angular');
angular.module('Requisition', [
require('angular-animate'),
require('angular-material'),
require('ng-stackdriver-errors') //Component Injection
])
Inside config:
angular.module('example').config(function($exceptionHandlerStdProvider) {
$exceptionHandlerStdProvider.config({
key: '<my-api-key>',
projectId: '<my-project-id>',
service: '<my-service>', // (optional)
version: '<my-service-version>' // (optional)
});
$exceptionHandlerStdProvider.setUser('XUXA-010203');
});
Inside the Controller:
angular.module('example').controller('ExampleController', function ($exceptionHandlerStd) {
try {
...
} catch(e) {
$exceptionHandlerStd.throw(e);
}
});
| Name | Type | provider | Controller | Description |
|---|---|---|---|---|
| config | Method | true | false | sets the stackdriver-errors configuration data |
| setUser | Method | true | true | sets the user to be logged on to stackdriver-errors |
| throw | Method | true | true | throws an exception |
Edit version.js and run the command below:
$ npm run build
FAQs
Client-side AngularJS library for Stackdriver Error Reporting
We found that ng-stackdriver-errors demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.