| 1 | --- |
| 2 | name: remote-access |
| 3 | description: Share presentation across network or internet |
| 4 | --- |
| 5 | |
| 6 | # Remote Access |
| 7 | |
| 8 | Share presentation across network or internet. |
| 9 | |
| 10 | ## Enable Remote Access |
| 11 | |
| 12 | ```bash |
| 13 | slidev --remote |
| 14 | ``` |
| 15 | |
| 16 | ## Password Protection |
| 17 | |
| 18 | ```bash |
| 19 | slidev --remote=your_password |
| 20 | ``` |
| 21 | |
| 22 | Password required for presenter mode access. |
| 23 | |
| 24 | ## Remote Tunnel |
| 25 | |
| 26 | Expose to internet via Cloudflare Quick Tunnels: |
| 27 | |
| 28 | ```bash |
| 29 | slidev --remote --tunnel |
| 30 | ``` |
| 31 | |
| 32 | Creates public URL for sharing without server setup. |
| 33 | |
| 34 | ## Use Cases |
| 35 | |
| 36 | - Control presentation from phone/tablet |
| 37 | - Multiple presenters |
| 38 | - Remote presentations |
| 39 | - Live streaming |
| 40 | - Audience viewing on their devices |
| 41 |