https://github.com/stevenacoffman/sturdy-stitch
Simple Express server reverse proxy, using url routing to stitch together mock responses and several backends into one localhost port
https://github.com/stevenacoffman/sturdy-stitch
Last synced: about 1 year ago
JSON representation
Simple Express server reverse proxy, using url routing to stitch together mock responses and several backends into one localhost port
- Host: GitHub
- URL: https://github.com/stevenacoffman/sturdy-stitch
- Owner: StevenACoffman
- License: mit
- Created: 2016-11-17T21:03:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-12-06T00:58:51.000Z (over 1 year ago)
- Last Synced: 2025-04-10T16:23:22.768Z (about 1 year ago)
- Language: JavaScript
- Size: 302 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Often you have the situation where you have code that needs multiple different endpoints that don't run in the same app, so you can't run them all on the same port.
This is intended to reverse-proxy your localhost requests on port 4000 with various different paths to be routed to go to one or more other hosts and ports. *BONUS* local cookies may be rewritten to match the new domain.
Since the HTTPS stuff is a problem, logging in (which requires HTTPS on firefly) might not work without a tweak or two.
Alternatively, You may need want to use the [jstor-cookie-manager](https://github.com/ithaka/jstor-cookie-manager).