https://github.com/davibe/proxo
A commandline http proxy supporting multiple endpoints
https://github.com/davibe/proxo
Last synced: 4 months ago
JSON representation
A commandline http proxy supporting multiple endpoints
- Host: GitHub
- URL: https://github.com/davibe/proxo
- Owner: davibe
- Created: 2016-12-20T21:08:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-20T21:08:32.000Z (over 8 years ago)
- Last Synced: 2025-01-25T13:11:13.419Z (6 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Proxo
-----A commandline http proxy supporting multiple endpoints
### Example
proxo --port 3000 \
--rule /::http://localhost:3001 \
--rule /api::https://api.server.comIt will forward
- all requests at 127.0.0.1:3000 to localhost:3001
- all requests at 127.0.0.1:3000/api to https://api.server.com/apiLast rules have higher priority.