Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fellipeutaka/discord-bot-template
đ¤ A Discord bot boilerplate including TypeScript and ESLint
https://github.com/fellipeutaka/discord-bot-template
discord discord-bot discordjs eslint nodejs prettier typescript
Last synced: 24 days ago
JSON representation
đ¤ A Discord bot boilerplate including TypeScript and ESLint
- Host: GitHub
- URL: https://github.com/fellipeutaka/discord-bot-template
- Owner: fellipeutaka
- License: mit
- Created: 2022-08-09T00:22:52.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-01T05:00:50.000Z (over 1 year ago)
- Last Synced: 2023-07-01T06:36:24.897Z (over 1 year ago)
- Topics: discord, discord-bot, discordjs, eslint, nodejs, prettier, typescript
- Language: TypeScript
- Homepage: https://dev.to/fellipeutaka/creating-your-first-discord-bot-using-typescript-1eh6
- Size: 93.8 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Discord Bot Template
Project |
Technologies |
How to use |
How to contribute |
License## đģ Project
A boilerplate for a project with Discord.js, TypeScript and ESLint.
## đ Technologies
This project was developed with the following technologies:
- [TypeScript][ts]
- [discord.js][discord.js]
- [ESLint][eslint]
- [Prettier][prettier]## âšī¸ How To Use
To clone and run this application, first you need to create a [Discord Bot](https://www.androidpolice.com/how-to-make-discord-bot/). Afterwards, you will need [Git][git] and [Node.js][node] installed on your computer.
From your command line:
```bash
# Clone this repository
$ git clone https://github.com/fellipeutaka/discord-bot-template.git# Install dependencies
# If you are using NPM
$ npm install# If you are using Yarn
$ yarn install# If you are using PNPM
$ pnpm install
```After that, copy and paste the .env.example file and rename it to .env.
Then insert your Discord Token and Discord Client ID. Great! Now you just need to start the development server.```bash
# Start server
# If you are using NPM
$ npm run dev
# If you are using Yarn
$ yarn dev
# If you are using PNPM
$ pnpm dev
```## đ¤ How to contribute
1. Fork this repository.
2. Create a branch: `git checkout -b `.
3. Make your changes and commit them: `git commit -m ' '`
4. Push to original branch:`git push origin / `
5. Create the pull request. Or, see the GitHub documentation on [how to create a pull request][pr].## đ License
This project is under the MIT license. See the [LICENSE](https://github.com/fellipeutaka/discord-bot-template/blob/main/LICENSE.md) for details.
Made with âĨ by Fellipe Utaka đ [Get in touch!](https://www.linkedin.com/in/fellipeutaka/)
[pr]: https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request
[git]: https://git-scm.com
[node]: https://nodejs.org/
[ts]: https://www.typescriptlang.org/
[discord.js]: https://discord.js.org/
[eslint]: https://eslint.org/
[prettier]: https://prettier.io/