Skip to content

Releases: ksysoev/wsget

v0.1.1

19 Oct 14:22
Compare
Choose a tag to compare

New features

  • Adds the possibility to edit multiline requests
  • Adds support for Unicode requests
  • Adds the possibility to skip SSL certificate verification
  • Adds the possibility to pass request as command line argument

Release Notes - wsget v0.1.0

14 Oct 12:14
Compare
Choose a tag to compare

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.