Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created May 24, 2019 16:49
Show Gist options
  • Save ntakouris/daafc3387b7895a16119ac9857c5ee44 to your computer and use it in GitHub Desktop.
Save ntakouris/daafc3387b7895a16119ac9857c5ee44 to your computer and use it in GitHub Desktop.
import Handlers from './handlers'
export default function configureEventSources () {
const eventSource = new EventSource(ApiRoutes.EventSource)
for (const handler of Handlers) {
eventSource.addEventListener(handler.eventType, event => {
handler.handle(event)
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment