Demo Without Deploying
Deploy to staging, wait for CI, fix bugs, redeploy. What should take minutes takes hours.
Staging doesn't match your local setup. 'It works on my machine' becomes 'It doesn't work on staging.'
Will it work? Will staging be up? Will the latest merge break something? Demo day shouldn't be stressful.
One command gives you a public URL to your local server. No deploy, no wait, no staging.
Demo from your local machine. What you see is what they see. No environment drift.
Password-protect your demos. Share with specific clients. Revoke access anytime.
Make changes, refresh the page. Your client sees updates instantly. Iterate in real-time.
# Start your local development server
npm run dev
# In another terminal, expose it to the internet
asd up --port 3000
# Share the generated URL with your client
# https://your-subdomain.asd.hostStart free. No credit card required.