Simple, single-user event aggregation platform, for use in personal websites and other related places.
event-streaming single-user events event-aggregation
at develop 10 lines 222 B view raw
1const snowflakeEvents = await fetch( 2 `http://localhost:${process.env.PORT || 4300}/events`, 3 { 4 headers: { 5 Authorization: `${process.env.USER_TOKEN}`, 6 }, 7 }, 8); 9 10console.log(await snowflakeEvents.json());