DEV Community

Discussion on: What developer products/tools should exist, but don't?

Collapse
 
hoffmann profile image
Peter Hoffmann

A simple proxy between different dev servers for web apps for this:

  • js-framework gives you server with hot reload
  • python dev server provides no httpS (not required b/c/ I'm using HAProxy in prod)

Result: can't set cookies via CORS due too SameSite="None" only with Secure="True"
Yes, I can spin up docker and use some simple Nginx-Proxy. But can't we have this two-in-one-out http adapter as some simple software please? Please make it run like this:

trousersProxy --localhost:5000@/ --localhost:5001@/api/v1
Enter fullscreen mode Exit fullscreen mode