lorio

1.0.6 • Public • Published

LORIO

Description

Lorio is a remote logging library that sends your logs to a online platform so you and your team can better debug your app and get notifications when serious issues happen.

How to use

1.Install in Node or your project

npm install lorio -save

2. Create your own instance

'''javascript const Lorio = require('lorio') const logger = new Lorio({ "project": "project_id" }) '''

You get project_id from your dashboard. Sign in to https://lorio.org and create a new project. It's FREE for smaller teams and your personal projects.

3. Use it in your functions & classes

'''javascript function sum(x, y) { try { return x.toPrecision(500)+y } catch (error) { logger.log(error) } } sum(3, 233) '''

Package Sidebar

Install

npm i lorio

Weekly Downloads

2

Version

1.0.6

License

ISC

Unpacked Size

3.92 kB

Total Files

4

Last publish

Collaborators

  • johnkilonzi