Skip to content

Instantly share code, notes, and snippets.

@kevzettler
Created April 1, 2013 23:22
Show Gist options
  • Save kevzettler/5288625 to your computer and use it in GitHub Desktop.
Save kevzettler/5288625 to your computer and use it in GitHub Desktop.
dancer SSE example
get '/stream' => sub{
content_type 'text/event-stream';
header 'Cache-Control' => 'no-cache';
header 'Connection' => 'Keep-Alive';
return "data: Hello World \n\n";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment