Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/atatus/atatus-spa

Atatus Real User Monitoring(RUM) and Error tracking for Single Page Applications
https://github.com/atatus/atatus-spa

agent apm error-monitoring rum spa

Last synced: about 1 month ago
JSON representation

Atatus Real User Monitoring(RUM) and Error tracking for Single Page Applications

Awesome Lists containing this project

README

        

# Atatus-SPA

[Atatus](https://www.atatus.com) Real User Monitoring and error tracking agent for single page applications (SPA).

[Signup for Atatus](https://www.atatus.com/signup).

## Getting Started

### Install

**Using yarn**

```
yarn add atatus-spa
```

**Using npm**

```
npm install atatus-spa --save
```

### Usage

In your web page:

```html

atatus.config('YOUR_API_KEY').install();

```

For more advanced options, refer [our documentation](https://docs.atatus.com/docs/browser-monitoring/customize-agent.html).

### CDN

Atatus is also available from our content delivery network:

```html

atatus.config('YOUR_API_KEY').install();

```

### CommonJS

To use Atatus with CommonJS imports:

```javascript
var atatus = require('atatus-spa');
atatus.config('YOUR_API_KEY').install();
```

### ES2015 (ES6)

To use Atatus with ES2015 (ES6) imports:

```javascript
import * as atatus from 'atatus-spa';
atatus.config('YOUR_API_KEY').install();
```