Discord Rich Presence, made easy!
- Reliable
- EasyPresence was built with one purpose, rich presence, batteries included. Thanks to this, a lot of code (such as automatic reconnection, ratelimiting) is built directly in.
- Simple
- You only have to add 1 line of code to your project to get working rich presence. It's really that simple.
- Light
- EasyPresence has 0 dependencies, and is only 30kb (less than 40% of
discord-rpc
).
- EasyPresence has 0 dependencies, and is only 30kb (less than 40% of
- Typed
- EasyPresence is written in pure TypeScript, and therefore has typings straight out of the box.
(new (require("easy-presence").EasyPresence)("878603502048411648")).setActivity({
details: "Using EasyPresence",
state: "neato!",
});
const client = new (require("easy-presence").EasyPresence)("878603502048411648"); // replace this with your Discord Client ID.
client.on("connected", () => {
console.log("Hello,", client.environment.user.username);
});
// This will be logged when the presence was sucessfully updated on Discord.
client.on("activityUpdate", (activity) => {
console.log("Now you're playing", activity ? activity.name : "nothing!")
});
setInterval(() => {
client.setActivity({
details: "Using EasyPresence",
state: "neato!",
assets: {
large_image: "rblxrp",
large_text: "EasyPresence",
small_image: "octocat",
small_text: "https://github.com/rblxrp/easypresence"
},
buttons: [
{
label: "Visit on GitHub",
url: "https://github.com/rblxrp/easypresence"
}
],
party: {
id: "1234567890",
size: [1, 10]
},
timestamps: { start: new Date() }
});
// Remove the presence
//client.setActivity();
}, 1000);