Skip to content

Instantly share code, notes, and snippets.

View Cyberistic's full-sized avatar

Cyberistic Cyberistic

View GitHub Profile
@Cyberistic
Cyberistic / index.js
Created August 19, 2025 05:30
Expo Notifications CloudFlare Worker Relay
/**
* Cloudflare Worker to relay push notifications to Expo
* Acts as a proxy between our server and https://exp.host/--/api/v2/push/send
*/
// Make sure to generate an API_KEY and store it in your worker secrets
const EXPO_PUSH_URL = "https://exp.host/--/api/v2/push/send";
const EXPO_PUSH_TOKEN_URL = "https://exp.host/--/api/v2/push/getExpoPushToken";