Winscript is built on top of Tauri v2 (the Rust-powered desktop runtime), Astro (the frontend framework that drives the UI), Node.js (for package management and the Astro dev server), and Rust/Cargo (the native backend compiler). You’ll need all four toolchains present on your machine before you can run or build the project locally.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/flick9000/winscript/llms.txt
Use this file to discover all available pages before exploring further.
Install Node.js LTS
Winscript’s frontend tooling requires a current LTS release of Node.js. Install it via Winget:
Install Rust & Cargo
Tauri compiles a native Rust backend for the desktop window and OS integrations. Install the Rust toolchain through Rustup:After the installer finishes, open a new terminal so that
rustc and cargo are available on your PATH.Clone the repository
Clone the Winscript repository from GitHub, then navigate into the
app directory where the Node.js project lives:Run in development mode
Start the Tauri development window. This launches the Astro dev server and then opens the native desktop window pointed at it:
The Winscript window enforces a minimum size of 750 × 700 pixels, as defined in
tauri.conf.json. Resizing below this threshold is not permitted. Make sure your display resolution meets this requirement when running or testing the app.