Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/atatus/atatus-spa
- Owner: atatus
- Created: 2019-08-26T10:06:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-09T09:19:00.000Z (2 months ago)
- Last Synced: 2024-11-14T15:21:08.906Z (about 1 month ago)
- Topics: agent, apm, error-monitoring, rum, spa
- Homepage: https://www.atatus.com/
- Size: 218 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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();
```