Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romanbaba/utilscord
It was created to make writing Discord bots faster and more convenient.
https://github.com/romanbaba/utilscord
discord discordjs extension extensions tool toolkit util utilities utility
Last synced: 3 months ago
JSON representation
It was created to make writing Discord bots faster and more convenient.
- Host: GitHub
- URL: https://github.com/romanbaba/utilscord
- Owner: romanbaba
- License: mit
- Created: 2024-01-31T12:47:07.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-05-20T17:19:35.000Z (8 months ago)
- Last Synced: 2024-09-30T08:23:16.427Z (3 months ago)
- Topics: discord, discordjs, extension, extensions, tool, toolkit, util, utilities, utility
- Language: TypeScript
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![utilscord](https://socialify.git.ci/romanbaba/utilscord/image?font=Jost&forks=1&language=1&name=1&owner=1&pattern=Plus&stargazers=1&theme=Auto)
# Utilscord
🛠️ It was created to make writing Discord bots faster and more convenient.## 🚀 Changes
- Errors have been made more visible for **Anti Crash**, however, how many errors you receive during the time your application is running will be displayed.
- We created a **Table** class prepared with Canvas that you can edit however you want.
- We changed the name **AdvancedEmbedType** to **EmbedType**.
- **OneHalfSecond (30 seconds)**, **OneQuarterSecond(15 seconds)** were added to the **Time** object.
- Added **findAndGetEmojis**, **getEmoji**.## 🏅 A few usage examples
```js
const { trim, findAndGetEmojis, captalize } = require("utilscord");
/* import { trim, findAndGetEmojis, captalize } from "utilscord"; */const message = "This module is very nice.";
const abbreviatedMessage = trim(message, 10);console.log(abbreviatedMessage); // Output --> "This mo..."
const updateMsg = "Hello 👋, new update available today! <:update:986539100221874176>";
const emojis = findAndGetEmojis(updateMsg);console.log(emojis) // Output --> ["👋", "<:update:986539100221874176>"]
const name = "rOmAn";
const editedName = captalize(name);console.log(editedName) // Output --> "Roman"
```
More? Take a look at its [documentation](https://github.com/romanbaba/utilscord/tree/master/docs)!## 🐞 I found a bug!
📱 If you want to reach me, you can reach me via [Discord](https://discord.gg/altyapilar)!