https://github.com/jastinxyz/create-badut-dc
Initialize a new Discord.js bot project with one command.
https://github.com/jastinxyz/create-badut-dc
Last synced: 2 months ago
JSON representation
Initialize a new Discord.js bot project with one command.
- Host: GitHub
- URL: https://github.com/jastinxyz/create-badut-dc
- Owner: JastinXyz
- Created: 2023-04-21T18:18:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-22T00:57:21.000Z (about 2 years ago)
- Last Synced: 2025-02-02T05:25:17.530Z (3 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/create-badut-dc
- Size: 7.81 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# create-badut-dc
Initialize a new Discord.js bot project. An Discord.js starter kit.
```sh
npx create-badut-dc@latest
# or
yarn create badut-dc
# or
pnpm create badut-dc
```### Generated app tree
```
.
├── src
│ ├── commands
│ │ ├── prefixes
│ │ │ ├── general
│ │ │ │ ├── help.js
│ │ │ │ └── ping.js
│ │ │ └── owner
│ │ │ └── eval.js
│ │ └── slash
│ │ └── general
│ │ └── ping.js
│ ├── common
│ │ └── functions.js
│ ├── events
│ │ ├── interactionCreate.js
│ │ ├── messageCreate.js
│ │ └── ready.js
│ └── index.js
├── .gitignore
├── .env
├── config.js
└── package.json
```