项目作者: letung3105

项目描述 :
REC Data Broadcasting Server
高级语言: Go
项目地址: git://github.com/letung3105/piper.git
创建时间: 2019-04-11T12:35:05Z
项目社区:https://github.com/letung3105/piper

开源协议:GNU General Public License v3.0

下载


REC Data Broadcasting Server

Simple broadcasting server using WebSocket protocol

With support for running script and broadcasting its output

Golang (required)

Follow the instruction at https://golang.org/doc/install if you have not installed Golang before

How to install

  1. go get -u github.com/letung3105/piper/cmd/piper

For development

Please read the Makefile for more information

Build

  1. go get -u github.com/letung3105/piper
  2. cd $GOPATH/src/github.com/letung3105/piper
  3. make build

Install

  1. go get -u github.com/letung3105/piper
  2. cd $GOPATH/src/github.com/letung3105/piper
  3. make install

Usage

  1. Usage of piper:
  2. -b string
  3. name of interpreter (default "python")
  4. -p string
  5. port use (default "8000")
  6. -s string
  7. name of script

Example

Broadcasting the output of the python script mock.py on localhost:8000

  1. cd $GOPATH/src/github.com/letung3105/piper
  2. piper -b python3 -s ./scripts/mock.py -p 8000