trackjs
TrackJS JavaScript error tracking agent.

trackjs downloads trackjs version trackjs license

trackjsPaquetes similares:
Tendencia de descargas de npm
3 A帽os
馃専 Muestra el gr谩fico de uso en tiempo real en el README.md de trackjs, simplemente copia el c贸digo a continuaci贸n.
## Usage Trend
[![Usage Trend of trackjs](https://npm-compare.com/img/npm-trend/THREE_YEARS/trackjs.png)](https://npm-compare.com/trackjs#timeRange=THREE_YEARS)
Cumulative GitHub Star Trend
馃専 Muestra el gr谩fico de tendencia de GitHub Stars en el README.md de trackjs, simplemente copia el c贸digo a continuaci贸n.
## GitHub Stars Trend
[![GitHub Stars Trend of trackjs](https://npm-compare.com/img/github-trend/trackjs.png)](https://npm-compare.com/trackjs)
Detalle de estad铆sticas
Paquete
Descargas
Stars
Tama帽o
Issues
Publicaci贸n
Licencia
trackjs34,998130137 kB3hace 2 a帽osSEE LICENSE IN LICENSE.md
README para trackjs

TrackJS Browser Agent

The browser agent for collecting errors from JavaScript, Network, and console exceptions. The agent wraps the browser API to record context about your application, network, and visitor, and include that context when unhandled errors occur.

You'll need a TrackJS account to use this agent. If you don't have one, why not start a free trial today?

Quick Start

  1. Signup for TrackJS and get your token.
  2. Add a dependency on TrackJS with npm install trackjs --save
  3. Install the agent in your app. You can paste the script tags into the <head> of your HTML:
<script src="PATH_TO_TRACKJS/t.js"></script>
<script>
  window.TrackJS && TrackJS.install({ token: 'YOUR_TOKEN_HERE' });
</script>

Or you can bundle it as a module into your application.

import { TrackJS } from 'trackjs';
TrackJS.install({ token: 'YOUR_TOKEN_HERE' });
  1. Test it out by calling TrackJS.track('testing!') somewhere in your application.
  2. You should see your error on TrackJS within a few seconds.

More Information

You can find more information about how to install and configure the agent in the TrackJS Documentation. If you run into any trouble, let us know right away at hello@trackjs.com