REC Data Broadcasting Server
Simple broadcasting server using WebSocket protocol
With support for running script and broadcasting its output
Follow the instruction at https://golang.org/doc/install
if you have not installed Golang before
go get -u github.com/letung3105/piper/cmd/piper
Please read the Makefile
for more information
Build
go get -u github.com/letung3105/piper
cd $GOPATH/src/github.com/letung3105/piper
make build
Install
go get -u github.com/letung3105/piper
cd $GOPATH/src/github.com/letung3105/piper
make install
Usage of piper:
-b string
name of interpreter (default "python")
-p string
port use (default "8000")
-s string
name of script
Broadcasting the output of the python script mock.py
on localhost:8000
cd $GOPATH/src/github.com/letung3105/piper
piper -b python3 -s ./scripts/mock.py -p 8000