quick.log
v1.2.1
Published
This package provides a quick, easy to use, logging solution viewable from a browser.
Downloads
48
Readme
Quick.log
Note: This package is under development and will be updated frequently.
Now supports markdown in .send
! Example
This package is meant to provide an easy way view and send logs to a webpage. You can view our Trello roadmap here!
Installation
npm install quick.log
Require Package
var log = require('quick.log')
Webpage Viewable
localhost:8080
Contributions Thank you, Morfixx - General Bugtesting & New Feature Ideas
Usage
Send Log
log.send('message')
Example Output
const log = require('./index.js')
log.send('#Supports Markdown!')
log.send('##Updates in real-time!')
log.send('###Viewable from any browser!')
// Counter
let i = 0
let func = setInterval(function () {
// Send Message
log.send(`**${i}** | *Random #* = \`${Math.random()}\``)
i++
}, 500)
Projects Using quick.log
Infinitude - A fully customizable, modular, multi-use discord bot. - By TrueXPixels