0

I have read this question, I found the best answer for me was : http://ngrok.com small tool

This tool is really great, but to add a custom domain you need paying plans

Is there any other tool like Ngrok to Access XAMPP Localhost from Internet

zahaby
  • 33
  • 10

1 Answers1

0

There npm module localtunnel.me which allows you to specify custom subdomain.

npm install -g localtunnel

then start tunnel like this

lt --port 8000 --subdomain yoursubdomain

then you'll be able to access it like subdomain.localtunnel.me

Shahid Kamal
  • 380
  • 2
  • 14