https://github.com/restbeast/restbeast
Command line API client, an API testing tool and an easy load testing tool
https://github.com/restbeast/restbeast
api-client api-rest api-testing api-testing-framework ci go golang load-testing pipeline rest tdd terminal
Last synced: 2 months ago
JSON representation
Command line API client, an API testing tool and an easy load testing tool
- Host: GitHub
- URL: https://github.com/restbeast/restbeast
- Owner: restbeast
- License: gpl-3.0
- Created: 2020-11-09T16:00:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-25T15:25:18.000Z (about 2 years ago)
- Last Synced: 2024-06-19T13:46:04.697Z (almost 2 years ago)
- Topics: api-client, api-rest, api-testing, api-testing-framework, ci, go, golang, load-testing, pipeline, rest, tdd, terminal
- Language: Go
- Homepage: https://restbeast.com/
- Size: 401 KB
- Stars: 19
- Watchers: 2
- Forks: 0
- Open Issues: 17
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/restbeast/restbeast/actions)
[](https://codecov.io/gh/restbeast/restbeast)
# RestBeast Terminal Client
In a nut shell;
- A terminal API client
- Testing tool either in terminal or in CI
- Easy load testing tool.
This open source terminal client aims to simplify api development, api testing, service health checks and load testing by putting them together under one roof.
## Visit [https://restbeast.com/docs/v1.3/](https://restbeast.com/docs/v1.3/) website for the documentation, and examples
## Installation
### Homebrew
Go [here](https://brew.sh/) to install brew, then;
```shell
brew tap restbeast/brew
brew install restbeast
```
### Binary
Get the latest build from [github release page](https://github.com/restbeast/restbeast/releases/latest).
Decompress the file and move the executable file to a location in $PATH
```shell
tar zxvf restbeast-v1.3.2-linux-amd64.tar.gz
sudo mv restbeast /usr/local/bin/
```
### Compile From Source
Install `go >= 1.17` [go docs](https://golang.org/doc/install)
Get the latest source from [github release page](https://github.com/restbeast/restbeast/releases/latest) and unzip
```shell
unzip restbeast-v1.3.2.zip
cd restbeast-v1.3.2
```
Or clone from github
```shell
git clone https://github.com/restbeast/restbeast.git
cd restbeast
```
```shell
make VERSION=v1.3.2
sudo make install
```
## License
GNU General Public License v3.0 - see [LICENSE](LICENSE) for more details