https://github.com/mxssl/pir
A simple app that prints incoming POST requests, created to experiment with the new mux.
https://github.com/mxssl/pir
Last synced: 11 months ago
JSON representation
A simple app that prints incoming POST requests, created to experiment with the new mux.
- Host: GitHub
- URL: https://github.com/mxssl/pir
- Owner: mxssl
- Created: 2024-02-25T12:43:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-25T12:44:12.000Z (over 2 years ago)
- Last Synced: 2025-01-22T19:21:29.556Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Print Incoming Request
A simple app that prints incoming POST requests, created to experiment with the new mux.
Install
```bash
go install github.com/mxssl/pir@latest
```
Test
```bash
curl \
--url 'localhost:9999' \
--request POST \
--data '{"key":"value"}'
```