Skip to content

Latest commit

 

History

History
71 lines (39 loc) · 1.14 KB

README.md

File metadata and controls

71 lines (39 loc) · 1.14 KB

Ayioo

Feb-27-2021 02-06-06

Ayioo is a logger which logs your server logs on discord channel.

Ayioo also provides a http middleware which logs requests and responses out of the box to your discord channel.🔥

> npm install ayiooo

How to use the logger?

import {Ayioo} from 'ayiooo'


Ayioo.configure({
    token:"DISCORD_TOKEN",
    channelID:"DISCORD_CHANNEL_ID"

})

Ayioo.log("Hey🔥");

Ayioo.warn("Warn⚠️");

Ayioo.error("error🚨");

How to use AyiooCatch middleware?

import express from 'express'
import {AyiooCatch} from 'ayiooo'

const app = express()
const port = 3001

Ayioo.configure({
    token:"DISCORD_TOKEN",
    channelID:"DISCORD_CHANNEL_ID"

})

app.use(AyiooCatch(
    {token:`DISCORD_TOKEN`,
    channelId:'DISCORD_CHANNEL_ID',instance:true})) //instance property is set to false by default


app.get('/', (req, res) => {
    res.send('Hello World!')
    Ayioo.log('FROM GET /')

})



app.listen(port, () => {
    Ayioo.log(`Example app listening at http://localhost:${port}`)
})