Vuko is open source — inspect and verify everything
Vuko is a free, open-source binaural beats and breathing app released under the MIT license, with its full source code public on GitHub. It is built as pure HTML, CSS, and vanilla JavaScript with no build step, generates sound with the Web Audio API, and runs entirely in your browser. Because the code is open, its privacy promise — that microphone audio never leaves your device — is something you can check for yourself.
Read the source
The complete Vuko codebase lives at github.com/weiqi-kids/vuko.life under the permissive MIT license. There is nothing hidden behind a server: what you download in your browser is essentially the whole application. You can read exactly how the beats are generated, how modes are selected, and how the optional microphone input is handled.
How it's built
- No framework, no build step. Pure HTML, CSS, and vanilla JavaScript — easy to read and audit.
- Web Audio API. Binaural beats are synthesized live in the browser by playing two slightly different frequencies, one per ear.
- Static hosting. The site is deployed as static files on GitHub Pages. There is no application backend that receives or processes your audio.
- Local breath detection. When enabled, the microphone signal is analyzed on-device to estimate breathing rhythm, which adjusts the beat frequency in real time.
How breath detection works, in plain terms
If you grant microphone permission, Vuko uses the Web Audio API to watch how the loudness of your breath rises and falls. From that pattern it estimates the pace of your inhale and exhale and nudges the binaural-beat frequency to match — slower and lower as you settle down. All of this computation happens inside the page on your device. You can confirm there is no audio upload by opening your browser's developer tools and watching the Network tab while it runs.
Fork it, self-host it, contribute
Because Vuko is MIT-licensed static files, you can clone the repository and serve it from any static host, fork it to build your own variation, or open a pull request to improve the original. Bug reports and feature ideas are welcome through GitHub issues.
Frequently asked questions
Is Vuko really open source?
What is Vuko built with?
How does breath detection work technically?
Can I self-host or fork Vuko?
How does open source help me trust Vuko's privacy claims?
Vuko is a general wellness and relaxation tool, not a medical device, and does not diagnose, treat, or cure any condition.