Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

EventSource for Go Build Status

This library is an initial implementation of Server Sent Events(SSE)/EventSource for Go. It is patterned after the Go Websockets library. It is very much a work in progress. Pull requests welcome.

Example app

Found in the examples directory. You can run it from the examples directory with:

go run main.go

Development

Please write tests for any code that you add. To run existing tests:

  bin/test

References

For more information about SSE/EventSource, see:

http://en.wikipedia.org/wiki/Server-sent_events

http://www.html5rocks.com/en/tutorials/eventsource/basics/