https://github.com/stackcats/socket.io-emitter-go
Go implementation of socket.io-emitter
https://github.com/stackcats/socket.io-emitter-go
go socketio socketio-emitter
Last synced: about 1 month ago
JSON representation
Go implementation of socket.io-emitter
- Host: GitHub
- URL: https://github.com/stackcats/socket.io-emitter-go
- Owner: stackcats
- License: mit
- Created: 2017-02-09T07:37:11.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-09-09T04:25:41.000Z (over 4 years ago)
- Last Synced: 2025-03-29T04:23:11.216Z (about 2 months ago)
- Topics: go, socketio, socketio-emitter
- Language: Go
- Size: 4.88 KB
- Stars: 23
- Watchers: 6
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# socket.io-emitter-go
Go implementation of socket.io-emitter## Install
```sh
$ go get github.com/stackcats/socket.io-emitter-go
```## Example
```go
opts := &emitter.Options{}
socket := emitter.NewEmitter(opts)
defer socket.Close()
socket.Broadcast().Emit("message", "Hello World")
```
## LicenseMIT