velox
Velox is a port of Tauri to Swift.
File Explorer
Download Latest Version (.zip)- ci.yml
- docs.yml
- main.swift
- velox.json
- main.swift
- velox.json
- app.js
- index.html
- styles.css
- main.swift
- README.md
- velox.json
- app.js
- index.html
- styles.css
- main.swift
- README.md
- velox.json
- app.js
- index.html
- styles.css
- main.swift
- README.md
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- app.js
- index.html
- styles.css
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- config.json
- data.csv
- sample.txt
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- main.swift
- velox.json
- VeloxRustBuildPlugin.swift
- lib.rs
- .gitignore
- Cargo.lock
- Cargo.toml
- Bundler.swift
- BuildCommand.swift
- BundleCommand.swift
- DevCommand.swift
- InitCommand.swift
- DevServerChecker.swift
- EnvLoader.swift
- FileWatcher.swift
- ProcessManager.swift
- TargetDetector.swift
- ExecutableResolver.swift
- Logger.swift
- VeloxCLI.swift
- VeloxMacros.swift
- VeloxCommandMacro.swift
- ClipboardPlugin.swift
- DIALOG_LIMITATIONS.md
- DialogPlugin.swift
- MenuPlugin.swift
- NotificationPlugin.swift
- OpenerPlugin.swift
- OSInfoPlugin.swift
- ProcessPlugin.swift
- ResourcesPlugin.swift
- VeloxPlugins.swift
- ShellPlugin.swift
- WindowStatePlugin.swift
- BuildingPlugins.md
- BuiltinPlugins.md
- Bundling.md
- Configuration.md
- CreatingCommands.md
- DeferredResponses.md
- EventSystem.md
- GettingStarted.md
- ManagingState.md
- VeloxArchitecture.md
- 01-01-create-project.sh
- 01-02-package-swift.swift
- 01-03-velox-json.json
- 01-04-main-basic.swift
- 01-05-main-html.swift
- 01-06-main-command.swift
- 01-07-main-complete.swift
- 01-08-build.sh
- 01-09-run.sh
- 02-01-starting-point.swift
- 02-02-math-command.swift
- 02-03-error-handling.swift
- 02-04-macro-setup.swift
- 02-05-macro-commands.swift
- 02-06-macro-registry.swift
- 02-07-frontend-html.html
- 02-08-frontend-js.js
- 03-01-response-types.swift
- 03-02-typed-commands.swift
- 03-03-typed-frontend.js
- 03-04-optional-args.swift
- 03-05-optional-handling.swift
- 03-06-dsl-basic.swift
- 03-07-dsl-compose.swift
- 04-01-state-class.swift
- 04-02-register-state.swift
- 04-03-access-dsl.swift
- 04-04-access-macro.swift
- 04-05-counter-state.swift
- 04-06-counter-commands.swift
- 04-07-counter-ui.html
- 04-08-counter-js.js
- 05-01-import-plugins.swift
- 05-02-all-plugins.swift
- 05-03-open-dialog.js
- 05-04-save-dialog.js
- 05-05-clipboard.js
- 05-06-notifications.js
- 05-07-custom-plugin.swift
- 05-08-plugin-commands.swift
- 05-09-use-custom-plugin.swift
- 06-01-emit-event.swift
- 06-02-listen-events.js
- 06-03-progress-command.swift
- 06-04-progress-ui.js
- 06-05-channel-create.swift
- 06-06-channel-send.swift
- 06-07-channel-receive.js
- 06-08-metrics-collector.swift
- 06-09-dashboard-ui.html
- 06-10-dashboard-js.js
- chapter-commands.png
- chapter-getting-started.png
- chapter-plugins.png
- tutorial-commands.png
- tutorial-events.png
- tutorial-first-app-running.png
- tutorial-first-app.png
- tutorial-plugins.png
- tutorial-state.png
- tutorial-types.png
- 01-YourFirstApp.tutorial
- 02-AddingCommands.tutorial
- 03-TypeSafeCommands.tutorial
- 04-ManagingState.tutorial
- 05-UsingPlugins.tutorial
- 06-EventStreaming.tutorial
- Table-of-Contents.tutorial
- VeloxRuntime.md
- Channel.swift
- Command.swift
- Config.swift
- Event.swift
- Invoke.swift
- Permission.swift
- Plugin.swift
- ResourceRegistry.swift
- Runtime.swift
- Security.swift
- State.swift
- CommandSupport.swift
- ConfigSupport.swift
- CustomProtocolSupport.swift
- EventManager.swift
- FFIEntryPoints.swift
- MockRuntime.swift
- PluginManager.swift
- PluginSupport.swift
- VeloxRuntimeWry.swift
- shim.c
- velox_runtime_wry_ffi.h
- AppKitHost.swift
- EventDecodingTests.swift
- EventLoopIntegrationTests.swift
- MenuTests.swift
- PermissionTests.swift
- RuntimeTests.swift
- TestUtilities.swift
- .gitignore
- LICENSE-APACHE-2.0
- LICENSE-MIT
- Makefile
- Package.swift
- README.md
- TODO.md
# Installation Guide
1. Get the code
git clone https://github.com/velox-apps/velox
Downloads the entire project code from GitHub to your computer.
cd velox
Moves into the project folder you just downloaded.
2. Rust
Medium RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
rm -f .cargo/config.toml
Type this command into your terminal and run it.
If cargo build finishes without errors, it worked. The executable is created under target/.
Pulled directly from this repo's README.
3. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
