DEV Community

Discussion on: Build A Modern Discord Bot from Scratch. Learn the basics

Collapse
 
powerstm profile image
Powers

Thanks for this, got me up and running nicely.

One tweak:

// export startBot as default
module.export = startBot;

to

// export startBot as default
module.exports = startBot;

Collapse
 
elijahtrillionz profile image
Elijah Trillionz

Thanks for the correction.