Skip to content
:heart: HeartBeat.js - console and error monitoring library
JavaScript
Find file
Failed to load latest commit information.
dist v0.2.3
src IE workaround
tests Remove delay from test
.gitignore v0.2.3
.travis.yml Change coveralls invoke method
LICENSE Add license
README.md modify README.md
bower.json Update bower.json
gulpfile.js Add build task
karma.conf.js Change coveralls invoke method
package.json v0.2.3

README.md

Build Status Coverage Status

Track your bugs easy!

HeartBeat.js is a small (8Kb minified), zero-dependency library for sending console events to user-defined URL. It supports all major console events (log, warn, etc.) and errors.

Installation

bower

bower install heartbeat

npm

npm install heartbeat.js

Usage

Minimal example:

var options = {
  url: 'http://example.com/logger'
};
heartbeat.start(options);

Data format

id - user identifier

timestamp - event timestamp

data.message - message (or error) text

data.url - page URL

data.line - message (or error) line number

data.col - message (or error) column number

event - event name

useragent - browser user agent

Example

{
  "id":1375674124,
  "timestamp":1439691618654,
  "data":{
    "message":"test",
    "url":"http://example.com",
    "line":"6",
    "col":"13"
  },
  "event":"console.log",
  "useragent":"Mozilla/5.0 Chrome/40.0.2403.155 Safari/537.36"
}

Options

options.url

Type:String

URL where to send log information;

options.methods

Type:Array Default: ["log", "info", "warn", "error", "assert", "dir", "clear", "profile", "profileEnd"]

Console methods to monitor.

options.logConsole

Type:Boolean Default: true

Enable console monitoring

options.logError

Type:Boolean Default: true

Enable error monitoring

options.callback

Type:Function Default: function(){}

Callback function

License

MIT, see LICENSE file

Something went wrong with that request. Please try again.