1.0.8 • Published 3 years ago

revchatapi v1.0.8

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

RevChatAPI

An API made to interact with the revolt API

Quick Guide

const revchat require('revchatapi');
const Client = new revchat.Client('token');

Client.on('ready', () => {
  console.log(`${Client.username} logged in`);
})

Client.on('message', (message) => {
  Client.sendToChannel(message.channel.id, {content: `Hey ${message.author.username}`});
  message.reply({content: 'I think your cool'}, true);
  console.log(message);
})
1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago