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

https://github.com/formapro/jserrornotifierbundle

After a simple setup this module will allow you to get notifications by email about occured errors in JavaScript. This bundle can be used as an independent module or together with BadaBoom bundle.
https://github.com/formapro/jserrornotifierbundle

Last synced: 11 months ago
JSON representation

After a simple setup this module will allow you to get notifications by email about occured errors in JavaScript. This bundle can be used as an independent module or together with BadaBoom bundle.

Awesome Lists containing this project

README

          

Getting Started With FpJsErrorNotifierBundle
============================================

After a simple setup this module will allow you to get notifications by email about occured errors in Javasccript.
This bundle can be used as an independent module or together with BadaBoom bundle.

## Installation

### Step 1: Download FpJsErrorNotifierBundle using composer

Add FOSUserBundle in your composer.json:

```js
{
"require": {
"fp/jserrornotifier-bundle": "dev-master"
}
}
```
Now tell composer to download the bundle by running the command:

``` bash
$ php composer.phar update fp/jserrornotifier-bundle
```

Composer will install the bundle to your vendors

### Step 2: Enable the Bundle

``` php

{% endjavascripts %}
```

### Step 6: Configure the FpJsErrorNotifierBundle

If you have an enabled and configured BadaBoom bundle, you can skip this step.
Otherwise you have to add some configurations for this bundle:

``` yaml
# app/config/config.yml
fp_js_error_notifier:
email_from: 'noreply@test.com' # sender email
email_to: ['john@example.com'] # list of recipients notification
```