revchatapi

1.0.8 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i revchatapi

Weekly Downloads

0

Version

1.0.8

License

ISC

Unpacked Size

7.08 kB

Total Files

8

Last publish

Collaborators

  • diamonddev01