Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nobonobo/go-sse-sample

ServerSentEvent Sample
https://github.com/nobonobo/go-sse-sample

Last synced: 22 days ago
JSON representation

ServerSentEvent Sample

Awesome Lists containing this project

README

        

# ServerSentEvent Server and Client sample

- server.go: ServerSentEventサーバー実装サンプル
- client.go: GopherJS用クライアントサンプル

server.goから
```go
broker.Push <- []byte("hoge")
```

とするとイベント待ちクライアント群に"hoge"がプッシュされる仕組み。

## test run

```sh
make build
make run
make open # other terminal
```