https://github.com/fries-byte/discordweb
DiscordWEB is for Discord webhooks to message and do stuff with your webhooks, the website/code will only be ran locally to keep your webhook link safe
https://github.com/fries-byte/discordweb
Last synced: 10 months ago
JSON representation
DiscordWEB is for Discord webhooks to message and do stuff with your webhooks, the website/code will only be ran locally to keep your webhook link safe
- Host: GitHub
- URL: https://github.com/fries-byte/discordweb
- Owner: Fries-byte
- Created: 2025-01-06T08:39:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-06T08:47:17.000Z (over 1 year ago)
- Last Synced: 2025-03-03T10:25:47.068Z (over 1 year ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#DiscordWEB
DiscordWEB is a javascript written webhook API.
DiscordWEB.js source
```js
function runepic() {
const webhookURL =
'Your Webhook';
const messageContent = {
content: 'Message is here',
};
fetch(webhookURL, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify(messageContent),
})
.then((response) => response.json())
.catch((error) => console.error('Error sending message:', error));
}
```
still in development