https://github.com/soyultro/app-discord-create
A CLI tool to create a Discord bot
https://github.com/soyultro/app-discord-create
bot cli cli-tool discord discord-bot
Last synced: 10 months ago
JSON representation
A CLI tool to create a Discord bot
- Host: GitHub
- URL: https://github.com/soyultro/app-discord-create
- Owner: SoyUltro
- Created: 2022-08-01T00:24:59.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-04T18:19:15.000Z (almost 4 years ago)
- Last Synced: 2025-06-01T07:14:37.002Z (about 1 year ago)
- Topics: bot, cli, cli-tool, discord, discord-bot
- Language: JavaScript
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# app-discord-create
[](https://forthebadge.com)
π Create Discord Bot with CLI
## About
Are you tired of copy and paste your old codes of discord bots? Or just want to create bots more faster? Use this tool and easily create your Discord Bot!
## Use
```
npx app-discord-create
```
## Args
* `--modules`: Use this argument to specify if you want to us to create node_module folder.
* `--basic`: Set this argument if you want to create basic bot.
* `--shard`: Set this argument if you want to create a sharding bot.
Follow the instructions, this is easy!
## Basic Project
```
βββ node_modules
βββ events
β ββclient
β βββ ready.js
β βββ interaction.js
βββ handler.js
βββ index.js
βββ package.json
βββ package-lock.json
βββ README.md
βββ .gitignore
```
## Sharding Project
```
βββ node_modules
βββ events
β ββclient
β βββ ready.js
β βββ interaction.js
βββ handler.js
βββ bot.js
βββ index.js
βββ package.json
βββ package-lock.json
βββ README.md
βββ .gitignore
```