A unified CLI for building MSFS 2024 add-ons: WASM gauges, native SimConnect
apps, JS/TS instruments, and full sim packages — all driven from a single
infinity-msfs.toml.
Full documentation, configuration reference, and examples live at https://infinity-simulations.com/docs/developer/build-tools.
Requires Rust 1.85+ and the wasm32-wasip1 target. wasm-opt (Binaryen) is
recommended for release builds.
# From a clone of this repo
cargo install --path .
# Required for WASM gauge builds
rustup target add wasm32-wasip1
# Optional but recommended
# https://github.com/WebAssembly/binaryen/releasesRun the environment check to confirm everything is wired up:
infinity-msfs doctorIf the MSFS 2024 SDK isn't already installed, fetch the WASM/SimConnect subset into a local cache:
infinity-msfs sdk installinfinity-msfs build --release # cargo build → wasm-opt → copy
infinity-msfs build --js-only # only the JS half of the pipeline
infinity-msfs package # fspackagetool (Windows + sim required)
infinity-msfs watch --js # rebuild on file changeSee the docs site for the full configuration schema and per-command flags.
MIT