├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── src ├── README.md ├── bot.js ├── commands ├── README.md └── singleCommand.js ├── config ├── README.md ├── bot-config.json ├── commands-config.json └── logging-config.json ├── core ├── cache │ └── README.md ├── command-handler │ ├── Ctx.js │ ├── README.md │ └── command-handler.js ├── database │ └── README.md ├── discord-utils │ ├── README.md │ └── permissions-handler.js ├── event-handler │ ├── README.md │ ├── event-handler.js │ └── events │ │ ├── README.md │ │ └── message.js ├── graphics │ ├── README.md │ ├── colors.js │ ├── embeds.js │ └── reactions.js └── utils │ ├── README.md │ ├── cooldowns-manager.js │ ├── logger.js │ └── tips │ ├── README.md │ ├── tips-manager.js │ └── tips.json └── sharding.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/README.md -------------------------------------------------------------------------------- /src/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/bot.js -------------------------------------------------------------------------------- /src/commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/commands/README.md -------------------------------------------------------------------------------- /src/commands/singleCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/commands/singleCommand.js -------------------------------------------------------------------------------- /src/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/config/README.md -------------------------------------------------------------------------------- /src/config/bot-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/config/bot-config.json -------------------------------------------------------------------------------- /src/config/commands-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/config/commands-config.json -------------------------------------------------------------------------------- /src/config/logging-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/config/logging-config.json -------------------------------------------------------------------------------- /src/core/cache/README.md: -------------------------------------------------------------------------------- 1 | # Cache 2 | You should place your cache manager files in here. 3 | -------------------------------------------------------------------------------- /src/core/command-handler/Ctx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/command-handler/Ctx.js -------------------------------------------------------------------------------- /src/core/command-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/command-handler/README.md -------------------------------------------------------------------------------- /src/core/command-handler/command-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/command-handler/command-handler.js -------------------------------------------------------------------------------- /src/core/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/database/README.md -------------------------------------------------------------------------------- /src/core/discord-utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/discord-utils/README.md -------------------------------------------------------------------------------- /src/core/discord-utils/permissions-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/discord-utils/permissions-handler.js -------------------------------------------------------------------------------- /src/core/event-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/event-handler/README.md -------------------------------------------------------------------------------- /src/core/event-handler/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/event-handler/event-handler.js -------------------------------------------------------------------------------- /src/core/event-handler/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/event-handler/events/README.md -------------------------------------------------------------------------------- /src/core/event-handler/events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/event-handler/events/message.js -------------------------------------------------------------------------------- /src/core/graphics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/graphics/README.md -------------------------------------------------------------------------------- /src/core/graphics/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/graphics/colors.js -------------------------------------------------------------------------------- /src/core/graphics/embeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/graphics/embeds.js -------------------------------------------------------------------------------- /src/core/graphics/reactions.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | wave: '👋', 3 | }; 4 | -------------------------------------------------------------------------------- /src/core/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/utils/README.md -------------------------------------------------------------------------------- /src/core/utils/cooldowns-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/utils/cooldowns-manager.js -------------------------------------------------------------------------------- /src/core/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/utils/logger.js -------------------------------------------------------------------------------- /src/core/utils/tips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/utils/tips/README.md -------------------------------------------------------------------------------- /src/core/utils/tips/tips-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/utils/tips/tips-manager.js -------------------------------------------------------------------------------- /src/core/utils/tips/tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/core/utils/tips/tips.json -------------------------------------------------------------------------------- /src/sharding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giuliopime/discordjs-bot-template/HEAD/src/sharding.js --------------------------------------------------------------------------------