const RPC = require('discord-rpc'); const client = new RPC.Client({transport: 'ipc'}); const data = { one: { details: "hello", state: "hello again", largeImageKey: "one", largeImageText: "img text :)", buttons: [ { label: "button 1", url: "https://www.youtube.com/" } ] }, id: "" }; client.once('ready', () => client.setActivity(data.one)); client.login({clientId: data.id});