Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/listepo/raven-angular
Raven library for Angular
https://github.com/listepo/raven-angular
angular angular6 error-handling raven ravenjs
Last synced: 8 days ago
JSON representation
Raven library for Angular
- Host: GitHub
- URL: https://github.com/listepo/raven-angular
- Owner: listepo
- Created: 2018-06-05T21:18:11.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-10T15:33:29.000Z (over 6 years ago)
- Last Synced: 2024-10-31T18:26:42.805Z (16 days ago)
- Topics: angular, angular6, error-handling, raven, ravenjs
- Language: TypeScript
- Homepage:
- Size: 107 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Raven library for Angular
## Installation
```bash
npm i @angular-community/raven
```
or```bash
yarn add @angular-community/raven
```
### Configuration```typescript
// [your-app-path]/src/app/app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { RavenModule } from '@angular-community/raven';import { AppComponent } from './app.component';
// @NgModule decorator with its metadata
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
RavenModule.forRoot('{{ DSN }}', options)
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }```