https://github.com/usebruno/bruno-echo-server
Bruno Echo Server
https://github.com/usebruno/bruno-echo-server
Last synced: 3 months ago
JSON representation
Bruno Echo Server
- Host: GitHub
- URL: https://github.com/usebruno/bruno-echo-server
- Owner: usebruno
- License: mit
- Created: 2024-09-15T13:31:01.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-15T14:34:36.000Z (9 months ago)
- Last Synced: 2025-01-11T05:28:42.626Z (5 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# Bruno Echo Server
A simple HTTP server that echoes the request body and headers back to the client.
## Example
```bash
curl --request POST \
--url https://echo.usebruno.com \
--header 'content-type: application/json' \
--data '{
"bruno": "is-awesome",
"long-int": 990531470713421825
}'
```## Development
```bash
npm install
npm start
```