Release Notes - wsget v0.1.0
This is the initial release of wsget, a command-line tool for interacting with a WebSocket server. This release includes the following features:
- Support for plain text and JSON messages
- Ability to save the output of a session to a file
- Simple and easy-to-use command-line interface
To install wsget, you can use the following command:
go install github.com/ksysoev/wsget/cmd/wsget@latest
To use wsget, you need to specify the WebSocket URL using the -u flag. For example:
wsget -u "wss://ws.postman-echo.com/raw"
By default, wsget will print the data received from the WebSocket server to the console. You can also save the data to a file using the -o flag. For example:
wsget -u "wss://ws.postman-echo.com/raw" -o output.txt
I hope you find wsget useful! If you encounter any issues or have any feedback, please don't hesitate to open an issue on the GitHub repository.