@xhayper/discord-rpc
v1.2.0
Published
a fork of discordjs/RPC
Downloads
3,417
Maintainers
Readme
About
@xhayper/discord-rpc
is a fork of discordjs/RPC with type safety and some additional features.
Example
import { Client } from "@xhayper/discord-rpc";
const client = new Client({
clientId: "123456789012345678"
});
client.on("ready", () => {
client.user?.setActivity({
state: "Hello, world!"
});
});
client.login();
Compatibility
| OS | Normal | snap | flatpak | | ------- | ------ | ---- | ------- | | Windows | Y | - | - | | macOS | Y | - | - | | Linux | Y | Y | Y |
- Linux is tested on Kubuntu 22.04
Credits
- discordjs: Making discordjs/RPC
- JakeMakesStuff: snap support
- Snazzah: snap + flatpak support
- leonardssh: Making coc-discord-rpc which inspried me to make this package due to how old discordjs/RPC is