Skip to content

Instantly share code, notes, and snippets.

@oney
Created June 26, 2024 10:37
Show Gist options
  • Save oney/c9bde2d8c72915450119e24163e1bd15 to your computer and use it in GitHub Desktop.
Save oney/c9bde2d8c72915450119e24163e1bd15 to your computer and use it in GitHub Desktop.
Use tRPC Server-sent Events in Expo
import "react-native-url-polyfill/auto";
import "@azure/core-asynciterator-polyfill";
import { ReadableStream, TransformStream } from "web-streams-polyfill/ponyfill";
import EventSource from "react-native-sse";
globalThis.ReadableStream = ReadableStream;
globalThis.TransformStream = TransformStream;
globalThis.EventSource = EventSource;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment