Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

ayiooo

saranonearth8ISC1.0.7TypeScript support: included

Logs your server logs on Discord⚡️

discord-logger, ayioo, saranonearth, express-middleware, serverless-logger

readme

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}`)
})