@zaunapp/client
v1.1.2
Published
A JS/TS library to interacting with Zaun API
Downloads
2
Readme
zaun.js
Installation (NodeJS only)
$ npm i @zaunchat/client
Example Usage
import { Client } from '@zaunchat/client'
const client = new Client()
client.on('messageCreate', (msg) => {
if (msg.content === '!ping') {
msg.reply('Pong!')
}
})
client.login('your-token-here')