Crates.io | wst |
lib.rs | wst |
version | 0.2.0 |
source | src |
created_at | 2017-11-12 12:51:19.896864 |
updated_at | 2017-11-19 23:41:50.860463 |
description | a tool for working with websockets |
homepage | |
repository | https://github.com/wridgers/wst |
max_upload_size | |
id | 39118 |
size | 10,152 |
A utility for working with websockets.
cargo install wst
wst
can act as both a client and a server.
$ wst
Usage: wst MODE
Modes:
server HOST PORT - a server that broadcasts stdin to connected clients
client URL - a client that prints messages to stdout (default)
As a server wst
will transmit lines received on stdin to connected clients.
( while :; do date && sleep 1; done) | wst server localhost 1234
As a client wst
will print received messages as a line to stdout. The client
mode argument is optional.
wst client ws://localhost:1234
wst ws://host:port
MIT