3

Sometimes you need to access your (Pow) virtual hosts from another computer on your local network — for example, when testing your application on a mobile device or from a Windows or Linux VM.

So far I've been using pow and xip.io seems to be the de facto way to access virtual hosts from other computers.

Today I needed to test a hotfix on Internet Explorer, on a Windows machine, using saucelabs.com, and in this scenario xip.io doesn't work anymore.

The Pow User's Manual suggests showoff-io as an alternative – the easiest way to share localhost over the web – but it seems that this one has turned commercial, revamped as forwardhq.com.

Are there any free alternatives to xip.io that work with testing platforms like Sauce Labs?

Bernhard Barker
  • 54,589
  • 14
  • 104
  • 138
Marius Butuc
  • 17,781
  • 22
  • 77
  • 111
  • 1
    I also would love a free alternative to ForwardHQ. I'd be willing to pay a one-time fee for ForwardHQ since I use it on occasion, but I don't want to pay monthly for a service I rarely use. – Sarah Vessels Jul 24 '13 at 20:02
  • Try [Burrow.io](https://burrow.io). The free plan lets you create one HTTP tunnel, and you don't need to install anything. After creating the tunnel through the web interface, all you have to do is paste a CURL command on your terminal and you get magically connected. I think I will add this as an answer. – Paulo Arruda Dec 24 '14 at 22:14
  • 1
    There's also [nip.io](http://nip.io/), a blatant rip-off of xip.io which claims to work better. – Dennis Feb 06 '17 at 19:44

4 Answers4

4

ngrok.com is a great alternative too. Simple Go binary, and it proxies both HTTP and HTTPS.

Undo
  • 25,519
  • 37
  • 106
  • 129
jc00ke
  • 2,435
  • 1
  • 21
  • 14
  • I've been using ngrok for a long time and highly recommend it. Its author is also very responsive and passionate about the project. – Dennis Feb 06 '17 at 19:46
3

I have used proxylocal successfully with Sauce Labs and it's free with source available on Github.

I unfortunately found ForwardHQ frequently disconnected but proxylocal has been solid so far.

newtriks
  • 1,434
  • 11
  • 13
2

Try Burrow.io. The free plan lets you create one HTTP tunnel, and you don't need to install anything. After creating the tunnel through the web interface, all you have to do is paste a CURL command on your terminal and you get magically connected.

Paulo Arruda
  • 121
  • 2
0

There is one more tool similar to proxylocal - localtunnel (it's github link - https://github.com/defunctzombie/localtunnel )

kovpack
  • 4,905
  • 8
  • 38
  • 55