Skip to content

Instantly share code, notes, and snippets.

View samirahmed's full-sized avatar

Samir Ahmed samirahmed

  • Snap Inc
  • Los Angeles, CA
View GitHub Profile
@maccman
maccman / pubsub.go
Last active December 15, 2016 22:30
// Go PubSub Server
//
// Usage - Subscribing:
// var conn = new EventSource('/subscribe');
// conn.addEventListener('message', function(e){ alert(e.data); }, false);
//
// Usage - Publishing:
// curl http://localhost:8080/publish -F 'msg=Hello World'
package main