https://github.com/utw0/discord.js-v14-template
discord.js-v14-mongolu-boş-altyapı
https://github.com/utw0/discord.js-v14-template
Last synced: about 1 month ago
JSON representation
discord.js-v14-mongolu-boş-altyapı
- Host: GitHub
- URL: https://github.com/utw0/discord.js-v14-template
- Owner: utw0
- Created: 2022-11-13T17:41:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-16T00:15:14.000Z (over 2 years ago)
- Last Synced: 2025-04-06T06:07:15.806Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# discord.js-v14-template mongolu
##Prefix Komut Taslak
```javascript
const { EmbedBuilder } = require('discord.js');module.exports = {
config: {
name: "",
description: "",
usage: ""
},
permissions: "",
owner: false,
run: async (client, message, args, prefix, config) => {
},
};
```## Slash Komut Taslak
```javascript
const { EmbedBuilder } = require('discord.js');module.exports = {
name: "",
description: "",
type: 1,
options: [],
permissions: {
DEFAULT_PERMISSIONS: "",
DEFAULT_MEMBER_PERMISSIONS: ""
},
run: async (client, interaction, config) => {},
};
```
## Contex Komut Taslak
```javascript
const { EmbedBuilder } = require('discord.js');module.exports = {
name: "",
type: 2,
run: async (client, interaction, config) => {},
};
```
## Modal Komut Taslak
```javascript
const { EmbedBuilder } = require("discord.js");module.exports = {
id: "",
run: async (client, interaction, config) => {},
};
```## Başlatma
> Config.js Doldur
> npm i
> node .