A lightweight desktop version of the calque.io calculator, built with Tauri for Windows.
frontend/— Frontend sources and build (HTML, JS, CSS)src-tauri/— Tauri (Rust) sourcessrc-tauri/target/release/Calque.exe— Final exe application
-
Make sure you have Rust (Cargo) and Node.js installed
- Rust: https://rustup.rs/
- Node.js: https://nodejs.org/
-
Open cmd (not PowerShell!) in the project folder
-
Run the command:
cmd /c "set PATH=%USERPROFILE%\.cargo\bin;%PATH% && npm exec tauri build -- --verbose"This will temporarily add Cargo to PATH and build a fresh exe.
-
The built exe will appear here:
src-tauri/target/release/Calque.exe
You can always download the latest ready-to-use exe from the Releases page.
This project was built and tested with:
- Node.js: v22.14.0
- npm: 10.9.2
- Rust (cargo): 1.86.0 (adf9b6ad1 2025-02-28)
- Tauri CLI: (see
package.jsonfor exact version) - OS: Windows
To reproduce the build, use these versions or newer, and follow the instructions above.
This project is licensed under the MIT License. See the LICENSE file for details.
- All frontend sources and styles are identical to the original calque.io
- For Tauri/Rust, always use cmd, not PowerShell
- If Rust is not found, restart cmd or add
%USERPROFILE%\.cargo\binto PATH