aurelia-raygun

Aurelia plugin for Raygun

Usage no npm install needed!

<script type="module">
  import aureliaRaygun from 'https://cdn.skypack.dev/aurelia-raygun';
</script>

README

aurelia-raygun

Aurelia plugin for Raygun

This plugin is still in initial development, also here are no tests yet.

Instalation

First run:

npm i aurelia-raygun --save

Then open you aurelia.json file and add this to the dependencies object:

{
  "name": "aurelia-raygun",
  "path": "../node_modules/aurelia-raygun/dist/amd",
  "main": "index"
}

Then on your main.js configuration file add this:

aurelia.use
.plugin('aurelia-raygun', instance => {
  instance.configure({
    debug: true,
    apiKey: 'YOUR-API-KEY',
    enableCrashReporting: true,
    allowInsecureSubmissions: true,
    enablePulse: false
  });
  instance.init();
})

Developers

Build

gulp BUILD

Pre release

gulp prepare-release