Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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