Create a Discord message then react to it with an emoji
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
// *** Set your channel ID and emoji here ***
const channel_id = "12345";
const emoji = "๐";
const message = await lib.discord.channels['@0.0.6'].messages.create({
channel_id,
content: "Hello ๐",
});
await lib.discord.channels['@0.1.1'].messages.reactions.create({
channel_id,
message_id: message.id,
emoji,
});