https://ravenjs.com/

Submitted URL:
https://ravenjs.com
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 13 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

Console log messages · 1 found

Messages logged to the web console

HTML

The raw HTML body of the page

<!DOCTYPE html><html><head>
    <title>Sentry's Raven.js Library</title>
    <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
    <style>
    .container {
        width: auto;
        max-width: 680px;
        padding: 0 15px;
    }
    </style>
</head>
<body style="">
<div class="container">
    <div class="page-header"><h1>Sentry's Raven.js</h1></div>
    <h3>What is Raven.js?</h3>
    <p>
        Raven.js is the (legacy) browser JavaScript SDK for <a href="https://sentry.io/">Sentry</a>.
        <strong>If you are starting from scratch we advise you to use `@sentry/browser` found <a href="https://github.com/getsentry/sentry-javascript">here.</a></strong>
        It automatically reports uncaught JavaScript exceptions triggered from a browser environment, and provides a rich API for reporting your own errors.
    </p>
    <p>
        <a href="https://sentry.io/">Sentry</a> provides open source error tracking for development teams that shows every crash in the user stack as it happens, with the details needed to prioritize, identify, reproduce, and fix each issue.
    </p>
    <h4>Plugins</h4>
    <div class="checkbox">
      <label>
        <input type="checkbox" value="console">
        console (experimental) <a href="https://github.com/getsentry/sentry-javascript/blob/master/packages/raven-js/plugins/console.js">View Source</a>
      </label>
    </div>
    <div class="checkbox">
      <label>
        <input type="checkbox" value="ember">
        ember.js <a href="https://github.com/getsentry/sentry-javascript/blob/master/packages/raven-js/plugins/ember.js">View Source</a>
      </label>
    </div>
    <div class="checkbox">
      <label>
        <input type="checkbox" value="angular">
        angular.js <a href="https://github.com/getsentry/sentry-javascript/blob/master/packages/raven-js/plugins/angular.js">View Source</a>
      </label>
    </div>
    <div class="checkbox">
      <label>
        <input type="checkbox" value="vue">
        vue.js <a href="https://github.com/getsentry/sentry-javascript/blob/master/packages/raven-js/plugins/vue.js">View Source</a>
      </label>
    </div>
    <input id="download" class="form-control input-lg" type="text">
</div>
<script type="text/javascript" async="" src="https://www.googletagmanager.com/gtag/js?id=G-PN689QPL1M&amp;cx=c&amp;_slc=1"></script><script async="" src="//www.google-analytics.com/analytics.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script>
$(function() {
    var plugins = [], base = 'https://cdn.ravenjs.com/3.27.0/', $download = $('#download');

    $('#download').val(base + 'raven.min.js'); // default to base value

    $('input[type="checkbox"]').on('click', function() {
        var val = $(this).val(), url;
        if ($(this).prop('checked')) {
            plugins.push($(this).val());
        } else {
            plugins.splice(plugins.indexOf(val), 1);
        }
        if (plugins.length) {
            plugins.sort();
            url = base + plugins.join(',') + '/raven.min.js';
        } else {
            url = base + 'raven.min.js';
        }
        $download.val(url);
    });

    $download.on('click', function() { $(this).select(); });
});

// Google Analytics
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-34959157-5', 'ravenjs.com');
ga('send', 'pageview');

</script>

</body></html>