Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/folody-team/discordjs-system-handler
A javascript library support System Files Handler Commands.
https://github.com/folody-team/discordjs-system-handler
discord-js discordjs javascript javascript-library library
Last synced: 24 days ago
JSON representation
A javascript library support System Files Handler Commands.
- Host: GitHub
- URL: https://github.com/folody-team/discordjs-system-handler
- Owner: Folody-Team
- Created: 2022-04-30T09:35:46.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-05T05:08:44.000Z (almost 3 years ago)
- Last Synced: 2024-10-18T08:41:41.628Z (4 months ago)
- Topics: discord-js, discordjs, javascript, javascript-library, library
- Language: TypeScript
- Homepage:
- Size: 36.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DiscordJS System Handler
A javascript library support System Files Handler Commands.
## What is System Files Handler Commands ?
> ### System Files Handler Commands
>
> **Info:** As an alternative to [**Commands Handler**](https://discordjs.guide/creating-your-bot/command-handling.html), it reduces the amount of code and does not need `module.exports` and optimizes your code.## Example
```js
const { FileSystem } = require('discordjs-system-handler');
const { Client, Intents } = require('discord.js');const client = new Client({intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MEMBERS, Intents.FLAGS.GUILD_MESSAGES]});
FileSystem.setup('commands', client, '!', function() {
client.on('ready', () => {
console.log('Ready!');
})
client.login("TOKEN");
});
````FileSystem.setup(dirname, client, prefix, function)`
| Params | Type |
| -------- | -------- |
| dirname | string |
| client | any |
| prefix | string |
| function | function |##### In example
You can see `commands` The library will read the directory containing the command files and correspond to the command name. That is, the user types the command name, the program will get the command name to read the command file contained in that directory. If there is none, it will be `NOT FOUND`
### NOTE: command name = file name