2022-03-23 17:02:23 +00:00
2022-03-23 17:02:23 +00:00
2021-04-19 15:37:19 +00:00
2022-03-23 17:02:23 +00:00
2022-03-23 17:02:23 +00:00
2021-12-23 19:34:17 +00:00
2022-03-22 18:06:52 +00:00

revolt.js

revolt.js revolt-api

revolt.js is a direct implementation of the entire Revolt API and provides a way to authenticate and start communicating with Revolt servers. This is an ESM library!

Example Usage (Javascript / ES6)

import { Client } from "revolt-api";

let client = new Client();

client.on("ready", async () =>
    console.info(`Logged in as ${client.user.username}!`),
);

client.on("message", async (message) => {
    if (message.content === "hello") {
        message.channel.sendMessage("world");
    }
});

client.loginBot("..");

If you are using Node, you must specify --experimental-specifier-resolution=node.

For example, node --experimental-specifier-resolution=node index.js.

Example Usage (Typescript)

import { Client } from "revolt-api";

let client = new Client();

client.on("ready", async () =>
    console.info(`Logged in as ${client.user!.username}!`),
);

client.on("message", async (message) => {
    if (message.content === "hello") {
        message.channel!.sendMessage("world");
    }
});

client.loginBot("..");

MobX

MobX is used behind the scenes so you can subscribe to any change as you normally would, e.g. with mobx-react(-lite) or mobx's utility functions.

import { autorun } from 'mobx';

[..]

client.once('ready', () => {
    autorun(() => {
        console.log(`Current username is ${client.user!.username}!`);
    });
});

Revolt API Types

All revolt-api types are re-exported from this library under API.

import { API } from 'revolt.js';

// API.Channel;
// API.[..];
S
Description
Typescript library for interacting with Stoat
Readme MIT 12 MiB
Latest
2026-01-16 13:28:35 -05:00
Languages
TypeScript 99.4%
JavaScript 0.5%