ClojureScript repl over proxy

2021-04-21 Thread Maksim Ryzhikov
Hi, I'm using a cloud development platform (Gitpod) and it automatically creates proxy from public URL to localhost, so you can develop a web application from cloud and see the result. I'm trying to run cljs REPL, but it fails to connect because it tries to connect to the REPL on `localhost:90

Re: ClojureScript repl over proxy

2021-04-23 Thread Maksim Ryzhikov
Thanks, but how SSH tunnel would help here? Currently, I see that ClojureScript hard coded localhost HOST and PORT in the JavaScript code which would send a request from the browser to establish REPL connection. Or you suggest setup forwarding localhost:9090 from local machine to the cloud? :)