Skip to main content

discord-rpc-deno


discord license

About

discord-rpc-deno is a port of @xhayper/discord-rpc to deno.

Example

import { Client } from "https://raw.githubusercontent.com/xhayper/discord-rpc-deno/main/src/mod.ts";

const client = new Client({
    clientId: "123456789012345678"
});

client.on("ready", () => {
    client.user?.setActivity({
        state: "Hello, world!"
    });
});

client.login();

Complatibility

OS Normal Snap
Windows Y -
macOS Y -
Linux Y Y
  • Linux is tested on Kubuntu 22.04

Missing Features, Need someone to contribute

  • Automatically update data object (use Event Subscription)
  • Undocumented methods

Credits