foxrpc-lib
v1.0.0
Published
A simple RPC client for Discord
Downloads
15
Maintainers
Readme
foxrpc-lib 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 });