jslog

1.0.4 • Public • Published

jslog

Build status

Cloud logger for Phonegap/Cordova hybrid applications and web applications

It catches all errors and log messages from your application. You can view logs lately to easily identify issues and ways to reproduce. Supports offline mode and storing large JSON objects.

How to start

Register at JsLog.me, create a new project and get an API key for it.

Using with NodeJS

Install jslog package

npm install jslog --save

Sample file for NodeJS:

var JsLog = require('jslog'),
    jslog = new JsLog({ key: "<API-KEY>" });
 
jslog.log('Message from JsLog');
jslog.log({aaa: 'AAA'});
console.log('Message from Console');

JsLog hooks on console.log, warn, error, info by default. You can control this behaviour by hookConsole option.

Using with browser

For web-sites and single-page applications

Include this script in your web page, preferably before any other script:

<script type="text/javascript" src="//jslog.me/js/jslog.js"></script>
<script type="text/javascript">jslog = new JsLog({ key: "<API-KEY>" });</script>

Using with Cordova

Download client library and bundle it with your hybrid application. Include this script in your web page, preferably before any other script:

<script type="text/javascript" src="/path-to-js/jslog.js"></script>
<script type="text/javascript">jslog = new JsLog({ key: "<API-KEY>" });</script>

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.4
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.4
    1
  • 1.0.2
    1
  • 1.0.1
    1
  • 1.0.0
    1

Package Sidebar

Install

npm i jslog

Weekly Downloads

4

Version

1.0.4

License

Apache 2.0

Last publish

Collaborators

  • mentatxx