All Projects → discordjs → Rpc

discordjs / Rpc

A simple RPC client for Discord

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Rpc

Raid Toolbox
Raid ToolBox (RTB) is a big toolkit of Spamming/Raiding/Token management tools for discord.
Stars: ✭ 211 (-14.92%)
Mutual labels:  discord
Awesomescripts
A Collection of Awesome Scripts in Python to Ease Daily-Life. Create an issue If you have some great idea for the new script. Leave a ⭐️
Stars: ✭ 228 (-8.06%)
Mutual labels:  discord
Hackathon Starter Kit
A Node-Typescript/Express Boilerplate with Authentication(Local, Github, Facebook, Twitter, Google, Dropbox, LinkedIn, Discord, Slack), Authorization, and CRUD functionality + PWA Support!
Stars: ✭ 242 (-2.42%)
Mutual labels:  discord
Titan
Create Discord server widgets for websites of all sizes! A simple to setup process for end-users. Server members may view or send messages into an embedded Discord channel.
Stars: ✭ 221 (-10.89%)
Mutual labels:  discord
Discord History Tracker
Browser script that saves Discord chat history into a file, and an offline viewer that displays the file.
Stars: ✭ 224 (-9.68%)
Mutual labels:  discord
Bastion
🚀 Get an enhanced Discord experience!
Stars: ✭ 234 (-5.65%)
Mutual labels:  discord
Sourcebans Pp
Admin, ban, and comms management system for the Source engine
Stars: ✭ 210 (-15.32%)
Mutual labels:  discord
Jetbrains Discord Integration
Discord rich presence integration for all JetBrains IDEs
Stars: ✭ 247 (-0.4%)
Mutual labels:  discord
Presences
🛒 Storage for Presences located at our Presence Store.
Stars: ✭ 223 (-10.08%)
Mutual labels:  discord
Disco
Discord Python library for people that like to dance
Stars: ✭ 242 (-2.42%)
Mutual labels:  discord
Wildbeast
Feature-rich Discord bot framework
Stars: ✭ 220 (-11.29%)
Mutual labels:  discord
Miscord
Facebook Messenger to Discord bridge
Stars: ✭ 225 (-9.27%)
Mutual labels:  discord
Pow assent
Multi-provider authentication for your Pow enabled app
Stars: ✭ 236 (-4.84%)
Mutual labels:  discord
Discord Twitter Bot
Posts Twitter Tweets to Discord through Webhook
Stars: ✭ 219 (-11.69%)
Mutual labels:  discord
Hunterpie
A complete, modern and clean overlay with Discord Rich Presence integration for Monster Hunter: World.
Stars: ✭ 246 (-0.81%)
Mutual labels:  discord
Pixieditor
PixiEditor is a lightweight pixel art editor made with .NET 5
Stars: ✭ 210 (-15.32%)
Mutual labels:  discord
Mtgatracker
MTGATracker is a deck tracker for MTG Arena, offering an in-game overlay that shows real time info about your deck in MTGA. It can also record & analyze your past matches to show personal aggregated gameplay history information, like lifetime wins/losses by deck, by event, etc.
Stars: ✭ 232 (-6.45%)
Mutual labels:  discord
Cf Workers Status Page
Monitor your websites, showcase status including daily history, and get Slack/Telegram/Discord notification whenever your website status changes. Using Cloudflare Workers, CRON Triggers, and KV storage.
Stars: ✭ 247 (-0.4%)
Mutual labels:  discord
Bot
A super Awesome Discord bot
Stars: ✭ 247 (-0.4%)
Mutual labels:  discord
Quarrel
A UWP discord client
Stars: ✭ 238 (-4.03%)
Mutual labels:  discord

Discord server NPM version NPM downloads Dependencies

NPM info

Discord.js RPC Extension

Documentation

Rich Presence Example

Browser Example

const clientId = '287406016902594560';
const scopes = ['rpc', 'rpc.api', 'messages.read'];

const client = new RPC.Client({ transport: 'websocket' });

client.on('ready', () => {
  console.log('Logged in as', client.application.name);
  console.log('Authed for user', client.user.username);

  client.selectVoiceChannel('81384788862181376');
});

// Log in to RPC with client id
client.login({ clientId, scopes });
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].