Skip to content

zaunchat/zaun.js

Repository files navigation

zaun.js

Installation (NodeJS only)

$ npm i @zaunapp/client

Example Usage

import { Client } from '@zaunapp/client'

const client = new Client()

client.on('messageCreate', (msg) => {
    if (msg.content === '!ping') {
        msg.reply('Pong!')
    }
})

client.login('your-token-here')

Resources