Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

eris-msgs-backup

xjulianCodes32MIT0.2.2

Forward your server messages to another server, with webhooks!

eris, discord, webhook, backup

readme

Eris Messages Backup NPM version

Forward your server messages to another server, with webhooks!

Installing

npm install eris-msgs-backup

Example

const Eris = require("eris");
const bot = new Eris("BOT_TOKEN");
const Backup = require("eris-msgs-backup");

bot.on("ready", () => {
  Backup(bot, "myServerID", "backupServerID", {
    embeds: true,
    files: true,
    deleteWebhook: true
  });
});

bot.connect();