1.0.8 • Published 2 years ago

revchatapi v1.0.8

Weekly downloads
-
License
ISC
Repository
github
Last release
2 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

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago