Server Sent Events with Fresh
Hi! I am trying to use Server Sent Events (SSE) with fresh. I understand I should have an island that holds the connection to the server but how can I broadcast the notifications to other islands?

BroadcastChannel, I will definitely try it.content-type: text/event-streamconst readableStream = serverSentEvents(async sendEvent => {
sendEvent('message one')
...
sendEvent('message two')
sendEvent(0)
})