Skip to content

Instantly share code, notes, and snippets.

@maccman
Created June 26, 2012 02:49
Show Gist options
  • Star 83 You must be signed in to star a gist
  • Fork 13 You must be signed in to fork a gist
  • Save maccman/2992949 to your computer and use it in GitHub Desktop.
Save maccman/2992949 to your computer and use it in GitHub Desktop.
Sinatra Server Side Event streaming.
# Usage: redis-cli publish message hello
require 'sinatra'
require 'redis'
conns = []
get '/' do
erb :index
end
get '/subscribe' do
content_type 'text/event-stream'
stream(:keep_open) do |out|
conns << out
out.callback { conns.delete(out) }
end
end
Thread.new do
redis = Redis.connect
redis.psubscribe('message', 'message.*') do |on|
on.pmessage do |match, channel, message|
channel = channel.sub('message.', '')
conns.each do |out|
out << "event: #{channel}\n\n"
out << "data: #{message}\n\n"
end
end
end
end
__END__
@@ index
<article id="log"></article>
<script>
var source = new EventSource('/subscribe');
source.addEventListener('message', function (event) {
log.innerText += '\n' + event.data;
}, false);
</script>
Copy link

ghost commented Jun 26, 2012

Don't you need to set your log variable, i.e. "var log = document.getElementById('log');".

@maccman
Copy link
Author

maccman commented Jun 26, 2012

Nope, elements can be referenced from JavaScript by their ID.

@jrom
Copy link

jrom commented Jun 27, 2012

OMG I can't believe I just discovered this tip.

mind blown

Copy link

ghost commented Jun 27, 2012

That's what I said when replying on Twitter... 14 years of JavaScript and then I come across this. Made me feel at little daft :)

@pahagon
Copy link

pahagon commented Aug 15, 2012

try do this without chrome/v8

@rklubenspies
Copy link

@daviddesberg
Copy link

You should use document.getElementById('log'). Accessing an element by its id in a globally-scoped variable is a relic of ancient versions of Internet Explorer which, for whatever reason; Google decided to implement in V8. It is non-standard and bad practice, though; and won't work in Firefox.

@niklas
Copy link

niklas commented Oct 5, 2014

Thank you for that inspiration, I almost used faye..

There is a typo (?) in line 27, there should be only one newline to keep both lines close together:

      conns.each do |out|
        out << "event: #{channel}\n"
        out << "data: #{message}\n\n"
      end

Else the pushed message won't have the right type bound, and source.addEventListener('different'..) won't react at all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment