Skip to content

Instantly share code, notes, and snippets.

View Nbc66's full-sized avatar
🔨
HAMMER

Kerim Čamdžić Nbc66

🔨
HAMMER
View GitHub Profile
@Nbc66
Nbc66 / GItHub_status_to_discord_webhook.js
Created May 7, 2024 15:59
A Cloudflare Worker script to be used with statuspage.io websites that allow you to subscibe to updates using a webhook
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
// Verify request method
if (request.method !== 'POST') {
return new Response('Method Not Allowed', { status: 405 })
}