You can bind event listeners to the EventSource object to listen to different events channels using the .addEventListener method.
EventSource.addEventListener(name: String, callback: Function, [options])
name: The name related to the name of the channel the server is emitting events to.
callb...