Giter Site home page Giter Site logo

heartbeat.js's Introduction

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

Who is using it?

The World Bank

Please submit a pull request, if your company is using it

License

MIT, see LICENSE file

heartbeat.js's People

Contributors

soundbot avatar wboleksii avatar clessg avatar zewish avatar anhulife avatar patrickjaja avatar

Watchers

James Cloos avatar wangdi avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.