'How can I set forward proxy in react?
I am struggling with some problem with proxy setting...
First of all, I am not talking about http-proxy-middleware
I have googled about react proxy and every one is talking about it, but that is not what I really looking for (it might be the misunderstanding of concept in here, but http-proxy-middleware seems like kind of alias to me, such replacing the host url )
What I really want to solve here is something similar with proxy in postman.
If I set the proxy in postman here such as https://some.proxy.server:8000
and shoot a request to https://target.server.com
myLocalIPAddress -> https://some.proxy.server:8000 -> https://target.server.com
This will be what happen in postman, right?
Can I implement this in react?
If not so, should I set a extra backend server for handling my fetch request in react?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|

