1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Backbone
========
Installation
------------
Start by adding the ``raven.js`` script tag to your page. It should be loaded as early as possible.
.. sourcecode:: html
<script src="https://cdn.ravenjs.com/###RAVEN_VERSION###/raven.min.js"
crossorigin="anonymous"></script>
Configuring the Client
----------------------
Next configure Raven.js to use your Sentry DSN:
.. code-block:: javascript
Raven.config('___PUBLIC_DSN___').install()
At this point, Raven is ready to capture any uncaught exception.
|