Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmoney/echo-server
Web server that supports http and websockets and echos the request back on the response
https://github.com/jmoney/echo-server
github-site homebrew-formula license-management mkdocs
Last synced: 12 days ago
JSON representation
Web server that supports http and websockets and echos the request back on the response
- Host: GitHub
- URL: https://github.com/jmoney/echo-server
- Owner: jmoney
- License: apache-2.0
- Created: 2023-04-06T21:45:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-08T03:44:02.000Z (11 months ago)
- Last Synced: 2025-01-21T10:55:30.538Z (20 days ago)
- Topics: github-site, homebrew-formula, license-management, mkdocs
- Language: Go
- Homepage: https://jmoney.dev/echo-server
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# echo-server
## Overview
| Arguemment | Description | Default Value |
| --- | --- | --- |
| port | The port to connect too. | 9001 |
| type | The type of server to run. Options are http, websocket, or all | all |## Installation
```bash
brew tap jmoney/server-utils
brew install echo-server
```## Run Locally
```bash
go run cmd/server/main.go -port 9002
```Starts up on port `9002`. You can use `ngrok` to expose the server to the internet if so desired with the command `ngrok http 9002`.