Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 1.18 KB

ReadMe.md

File metadata and controls

12 lines (9 loc) · 1.18 KB

Server Sent Events

Traditionally, a web page has to send a request to the server to receive new data; that is, the page requests data from the server. With server-sent events, it's possible for a server to send new data to a web page at any time, by pushing messages to the web page.

Many real time services using this approach if it needs to push messages based on an event. Twitter and facebook feeds, stock market trading signals are pushed using this method.

References