Share stdout as a web application, oipe stdout from cli-executables to WebSocket server with a web dashboard.
stdout-pub is made out of two executables:
robby
server aggregeting stdouts from pipers and displaying them on the webclient
piper
client sending stdout to a robby
# Dependencies
$ go get github.com/gorilla/mux
$ go get github.com/gorilla/websocket
# Install
$ go build cmd/piper.go
$ go build cmd/robby.go
Start server, visit http://localhost:1234/
$ ./robby -addr :1234
Send data
$ echo "a" | ./piper -addr :1234