An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# app-discord-create

[![forthebadge](https://forthebadge.com/images/badges/made-with-javascript.svg)](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
```