Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 616 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 616 Bytes

@node-bambu/discord

npm (scoped)

Testing

Test with code like this:

import { BambuBot } from './index';

async function onStart() {
  console.log('Bot started');

  //console.dir(await bot.bambu.ftp.list('/'));
}

async function main() {
  const bot = new BambuBot({
    discord: {
      clientId: '<discord bot application id>',
      publicKey: '<discord bot public key>',
      token: '<discord bot token>',
    },
  });

  bot.start().then(onStart).catch(console.dir);
}

main();