Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 21 days 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 (28 days ago)
- Default Branch: main
- Last Pushed: 2025-01-06T08:47:17.000Z (28 days ago)
- Last Synced: 2025-01-06T09:38:52.408Z (28 days ago)
- Language: JavaScript
- Size: 0 Bytes
- 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