Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/raphael/wsc

A tiny command line websocket client written in Go
https://github.com/raphael/wsc

Last synced: about 1 month ago
JSON representation

A tiny command line websocket client written in Go

Lists

README

        

# wsc

A simplistic tool for sending and receiving websocket messages from a command line.
Mainly useful to test websocket servers.

Getting started:
```
$ go get github.com/raphael/wsc
$ wsc -o http://websocket.org -H "Sample-Header-1: foo" -H "Sample-Header-2: bar" -u ws://echo.websocket.org
2016/03/08 22:51:51 connecting to ws://echo.websocket.org...
2016/03/08 22:51:52 ready, exit with CTRL+C.
foo
>> foo
<< foo
^C
exiting
```