Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ccouzens/airbrake_error_notification_deno
Create Airbrake error notifications from Deno
https://github.com/ccouzens/airbrake_error_notification_deno
Last synced: 17 days ago
JSON representation
Create Airbrake error notifications from Deno
- Host: GitHub
- URL: https://github.com/ccouzens/airbrake_error_notification_deno
- Owner: ccouzens
- License: apache-2.0
- Created: 2020-10-17T16:16:49.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-17T19:54:38.000Z (about 4 years ago)
- Last Synced: 2023-08-08T20:43:41.302Z (over 1 year ago)
- Language: TypeScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Airbrake Error Notification Deno
Create Airbrake error notifications from Deno.
A client implementation of
[Airbrake's error notification v3 API](https://airbrake.io/docs/api/#error-notification-v3).See the test for an example of usage.
Unlike many other Airbrake libraries, it doesn't integrate into your
application. Instead it needs to be invoked manually. It could be used to build
a library that automatically sends notices on error.This project is dual licensed under MIT and Apache2, but contains a lot of
examples and documentation from
[Airbrake's API documentation](<(https://airbrake.io/docs/api/#error-notification-v3)>).## Running the tests
```bash
docker-compose -f test_environment/docker-compose.yml up -d errbit# optionally login to http://localhost:8080/ [email protected] password.
deno test --allow-net=localhost:8080
```