📡 DeckTap is a lightweight local-network remote for controlling presentations.
Use your phone to wirelessly control PowerPoint, Keynote, PDF slideshows — no app installation needed.
- 📱 Control slides via your phone browser
- 🌐 Works over local Wi-Fi/Hotspot network
- 🖥 Simulates keyboard arrow keys to navigate slides
- 🚀 Minimal setup: run a local Node.js server and scan a QR code
- 🔒 No internet required, safe and private
decktap/
├── client/ # Computer side agent
│ ├── lan.js # LAN control
│ ├── cloud.js # Connect cloud relay server in the future
│ └── config.js
│
├── controller/ # Mobile phone controller web page
│ └── index.html
│
├── server-cloud/ # Cloud server for remote control in the future
│ └── server.js
│
├── README.md
├── LICENSE
├── package.json
└── .gitignore
DeckTap uses @nut-tree/nut-js
to simulate keyboard events. On macOS, you need to grant Accessibility permissions to your terminal:
- Open System Settings > Privacy & Security > Accessibility
- Click the lock icon 🔒 to make changes
- Click the + button
- Select
Terminal.app
(or iTerm, VS Code, etc. depending on what you use) - Check the box next to your terminal app
Note: Without these permissions, DeckTap won't be able to control your presentations.
-
Install dependencies:
cd decktap-web && npm install && npm run build cd .. && npm install
-
Grant accessibility permissions (macOS only):
- Follow the steps in macOS Permissions
- Restart your terminal after granting permissions
-
Start the server:
npm start
-
Connect with your phone:
🖱️ Standalone Distribution Quick Start (Not available yet, an Electron client will be developed in the future)
If you received a standalone executable version of DeckTap (such as decktap-macos
, decktap-win.exe
, or decktap-linux
), you can run it directly without installing Node.js or any dependencies.
-
macOS / Linux users:
- Before the first run, grant execute permission (only needed once):
chmod +x decktap-macos
- Run:
./decktap-macos
- Before the first run, grant execute permission (only needed once):
-
Windows users:
- Run it in the command prompt:
decktap-win.exe
- Run it in the command prompt:
-
First run on macOS: Please follow the terminal prompts to grant Accessibility permissions (see above macOS Permissions).
-
Scan the QR code or open the displayed URL on your phone to start controlling your presentation!
If you encounter issues such as failure to run, insufficient permissions, or cannot access the page, please send the terminal error message to the developer for help.