@exceptionless/angularjs
TypeScript icon, indicating that this package has built-in type declarations

3.1.0 • Public • Published

Exceptionless AngularJS

This package provides native JavaScript support for AngularJS applications.

Getting Started

To use this package, your must be using ES6 and support ESM modules.

Installation

You can install Exceptionless either in your browser application using a script tag, or you can use the Node Package Manager (npm) to install the package.

CDN

Add the following script tag at the very beginning of your page:

<script type="module" src="https://unpkg.com/@exceptionless/angularjs"></script>

npm

  1. Install the package by running npm install @exceptionless/angularjs --save.
  2. Add the following script tag at the very beginning of your page:
<script type="module" src="node_modules/@exceptionless/angularjs/dist/index.bundle.js"></script>

Configuration

  1. Import exceptionless angular module like this: angular.module("app", ["exceptionless"])
  2. Inject $ExceptionlessClient and call startup during app startup.
angular
  .module("app", ["exceptionless"])
  .config(function ($ExceptionlessClient) {
    await $ExceptionlessClient.startup((c) => {
      c.apiKey = "API_KEY_HERE";

      c.defaultTags.push("Example", "JavaScript", "angularjs");
    });
  });

Once that's done, you can use the Exceptionless client anywhere in your app by importing $ExceptionlessClient followed by the method you want to use. For example:

await $ExceptionlessClient.submitLog("Hello world!");

Please see the docs for more information on configuring the client.

Support

If you need help, please contact us via in-app support, open an issue or join our chat on Discord. We’re always here to help if you have any questions!

Package Sidebar

Install

npm i @exceptionless/angularjs

Weekly Downloads

1

Version

3.1.0

License

Apache-2.0

Unpacked Size

881 kB

Total Files

13

Last publish

Collaborators

  • exceptionless