Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matteobaccan/echoserver
Simply echo server for stress test
https://github.com/matteobaccan/echoserver
echo-server hacktoberfest java
Last synced: about 2 months ago
JSON representation
Simply echo server for stress test
- Host: GitHub
- URL: https://github.com/matteobaccan/echoserver
- Owner: matteobaccan
- License: mit
- Created: 2022-10-26T14:15:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T15:03:13.000Z (4 months ago)
- Last Synced: 2024-09-18T18:28:29.138Z (4 months ago)
- Topics: echo-server, hacktoberfest, java
- Language: Java
- Homepage:
- Size: 77.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EchoServer
The HTTP Echo Server is a powerful tool for stress testing. It allows users to create an echo server that will relay all HTTP requests.
## What is an HTTP Echo server
An HTTP Echo Server is a type of server that responds to a client's request by echoing back what was sent. The purpose of an HTTP Echo Server is to test the functionality of a client's HTTP requests. This type of server is most often used in development and testing environments, since it offers a quick way to test the communication between two systems.
## Usage
```bash
Usage: EchoServer [-hV] [-b=] [-c=] [-i=] [-p=]
Simply EchoServer for stress test
-b, --body= Body to use
-c, --content-type=
Content-type to use
-h, --help Show this help message and exit.
-i, --ip= Ip to use
-p, --port= Port to use
-V, --version Print version information and exit.
```## How To use
```bash
EchoServer --ip=127.0.0.1 --port=8080
```Run an EchoServer on ip 127.0.0.1 and port 8080