# All Commands

When you create a command, it is automatically added to a collection inside `ds`

You can access all of your commands by running the `.map` and other Discord.js Collection functions!

```javascript
ds.commands.map(command => {
    console.log(command.name);
});
```
