All Projects → gobwas → Gws

gobwas / Gws

Go Web Socket

Programming Languages

go
31211 projects - #10 most used programming language

✨ gws

CLI tool for websocket testing

Demo

Install

go get github.com/gobwas/gws

Usage exmaples

Connect to the websocket server:

gws client -url="ws://my.cool.address"

Run simple server and type response messages in terminal:

gws server -listen=":8888" -response=prompt

Or just simple echo:

gws server -listen=":8888" -response=echo

Run lua script:

gws script -path=./my_cool_script.lua

Usage info:

Usage of gws:
gws client|server|script [options]
options:
  -header string
        list of headers to be passed during handshake (both in client or server)
        format:
                { pair[ ";" pair...] },
        pair:
                { key ":" value }
  -listen string
        address to listen (default ":3000")
  -origin string
        use this glob pattern for server origin checks
  -path string
        path to lua script
  -response value
        how should server response on message (echo, mirror, prompt, null) (default null)
  -retry int
        try to reconnect x times (default 1)
  -statd duration
        server statistics dump interval (default 1s)
  -url string
        address to connect (default ":3000")
  -verbose
        verbose output

Scripting

gws brings you ability to implement your tests logic in .lua scripts. Please look at scripts folder in this repository to find an examples of scripting.

Why

gws is highly inspired by wsd and iocat. But in both tools I found not existing features that I was needed some how.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].