A minimal Electron app showing how to integrate the
@captchala/electron SDK.
- Website: https://captcha.la
- Dashboard: https://dash.captcha.la
- Electron SDK docs: https://captcha.la/docs/sdk/electron
- All SDK docs: https://captcha.la/docs
- Support: support@captcha.la
npm install
npm startThe window opens, click Verify to trigger the captcha. The SDK runs in the main process and presents a native captcha window from the OS.
The demo uses a public demo appKey. Replace with your own in main.js
after signing up at https://dash.captcha.la.
.
├── main.js # Electron main process — calls CaptchalaClient.verify()
├── preload.js # Renderer ↔ main IPC bridge
├── index.html # Renderer UI
├── package.json
├── README.md
└── LICENSE
- Node.js 18+
- Electron 28+ (declared as devDep, installed by
npm install)
MIT — see LICENSE.