DEV Community

Sospeter Mong'are
Sospeter Mong'are

Posted on

6

Alternatives to LocalTunnel for exposing your local development server to the internet

Here are some alternatives to LocalTunnel for exposing your local development server to the internet:

1. Ngrok

  • Description: One of the most popular tools for exposing local servers.
  • Features:
    • Secure tunnels with HTTPS.
    • Detailed request logging and replay.
    • Supports custom subdomains (paid plans).
  • Command:

     ngrok http 8080
    
  • Website: https://ngrok.com


2. Cloudflare Tunnel (Argo Tunnel)


3. Serveo

  • Description: A simple and lightweight alternative.
  • Features:
    • No installation required.
    • Custom subdomains available.
  • Command:

     ssh -R 80:localhost:8080 serveo.net
    
  • Website: https://serveo.net


4. Expose

  • Description: A PHP-based alternative for exposing local servers.
  • Features:
    • Works well with Laravel and other PHP frameworks.
    • Custom subdomains.
  • Command:

     expose share http://localhost:8080
    
  • Website: https://expose.dev


5. Inlets

  • Description: A self-hosted tunnel solution.
  • Features:
    • Ideal for developers who prefer self-hosted solutions.
    • Paid version for production use.
  • Command:

     inlets client --remote wss://your-server --upstream=http://localhost:8080
    
  • Website: https://inlets.dev


6. Pagekite

  • Description: A reliable and long-standing option.
  • Features:
    • Supports HTTP, HTTPS, and SSH tunneling.
    • Free for personal use with bandwidth limits.
  • Command:

     pagekite.py 8080 yourname.pagekite.me
    
  • Website: https://pagekite.net


Comparison

Feature Ngrok Cloudflare Tunnel Serveo Expose Inlets Pagekite
Free Tier
Custom Subdomain ✅ (Paid)
Installation Required Required Not Req. Required Required Required
Self-Hosting

Choose based on your specific requirements, such as ease of use, security, or budget!

Sentry blog image

How I fixed 20 seconds of lag for every user in just 20 minutes.

Our AI agent was running 10-20 seconds slower than it should, impacting both our own developers and our early adopters. See how I used Sentry Profiling to fix it in record time.

Read more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay