Minimal CommonJS implementation of Raven + Angular
npm install ng-raven> Minimal CommonJS implementation of Raven + Angular
```
$ npm install --save raven-js ng-raven
raven-js is a peer dependency of ng-raven. ng-raven has no API of its own. You register it and it captures exceptions from $exceptionHandler. You are responsible for configuring Raven yourself. Nothing is added to Angular's DI system. require('raven-js') directly when you need it.
`js
var angular = require('angular')
var Raven = require('raven-js')
var ngRaven = require('ng-raven')
Raven.config({...}).install()
angular.module('myApp', [ngRaven])
``
MIT © Ben Drucker