Discord RPC module for Deno.
You can import the module from https://deno.land/x/discord_rpc/mod.ts (don't forget to add a version!).
You can also check the documentaton here.
Note that this module requires --unstable flag on Windows since Named Pipes
support is added using FFI API, which is unstable.
import { Client } from "https://deno.land/x/discord_rpc/mod.ts";
const client = new Client({
  id: "869104832227733514",
});
await client.connect();
console.log(`Connected! User: ${client.userTag}`);
await client.setActivity({
  details: "Deno 🦕",
  state: "Testing...",
});Contributions are welcome!
- Please format code with deno fmt
- Run deno lintbefore submitting PR
MIT licensed. Check LICENSE for more info.
Copyright 2021 © littledivy
Copyright 2022-2023 © Harmony Land