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: 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

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