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

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ı

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 .