DEV Community

Discussion on: How to access your laptop from anywhere in the WORLD without portforwarding!

Collapse
 
codespent profile image
Patrick Hanford • Edited

This concept is also great for locally testing webhooks or any other functionality that requires your local development server to be accessible to the net!

./ngrok http 8000 will forward all requests from your ngrok url to Port 8000 so ngrok_url.io/stripe_webhook/ can then receive your webhook events locally!