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

https://github.com/bradbeattie/django-smokealarm

django-smokealarm is a package designed to collect front-end JavaScript errors and expose them in the admin backend for later inspection
https://github.com/bradbeattie/django-smokealarm

Last synced: 6 months ago
JSON representation

django-smokealarm is a package designed to collect front-end JavaScript errors and expose them in the admin backend for later inspection

Awesome Lists containing this project

README

          

Introduction
============

``django-smokealarm`` is a package designed to collect front-end JavaScript
errors and expose them in the admin backend for later inspection.

Requirements
============

Django 1.4 (it may work with older versions, but I haven't tested this)

Installation
============

Add ``smokealarm`` to your ``INSTALLED_APPS``.

Add smokealarm to your URLConf, using something like this::

urlpatterns += patterns("",
url(r"^smokealarm/", include("smokealarm.urls")),
)

Add smokealarm to your base template, using something like this::


smokealarm_url = "{% url smokealarm_report %}";

Usage
=====

As JavaScript errors occur in the front end, browsers will make posts to
the smokealarm_report URL. The subsequently created models are available
in your backend admin.