Build smaller, faster, and more secure desktop applications with a web frontend.
Go to file
2023-05-03 13:30:51 -03:00
.changes fix(ci): update getPublishedVersion script 2023-05-03 13:11:47 -03:00
.devcontainer VS Code: Ubuntu development container via Docker (#4128) 2022-06-05 21:42:36 -03:00
.github fix(ci): update NPM token 2023-05-03 13:03:41 -03:00
.husky remove create-tauri-app (#3493) 2022-02-17 18:20:56 -03:00
.scripts fix(ci): update getPublishedVersion script 2023-05-03 13:11:47 -03:00
.vscode VS Code: Ubuntu development container via Docker (#4128) 2022-06-05 21:42:36 -03:00
audits chore(audit): add report 2022-02-04 11:41:15 -03:00
core chore: trigger release 2023-05-03 12:46:40 -03:00
examples feat(core): block remote URLs from accessing the IPC 2023-04-12 11:43:57 -03:00
tooling chore: update bundler version 2023-05-03 13:30:51 -03:00
.editorconfig feat(icons): add and test icon generation for tauri (#55) 2019-11-17 22:30:14 +01:00
.gitignore chore: remove accidental checked cli.js dir (#3562) 2022-03-02 10:21:00 -03:00
.prettierrc.js chore: add .prettierrc in repo root (#2145) 2021-07-03 19:48:04 -03:00
app-icon.png New brand (#2445) 2021-08-16 22:00:40 +08:00
ARCHITECTURE.md remove create-tauri-app (#3493) 2022-02-17 18:20:56 -03:00
Cargo.toml feat(cli): prevent default bundle identifier from building, closes #4041 (#4042) 2022-05-04 10:48:38 -03:00
dependabot.yml chore(ci): adjust issue labels (#4564) 2022-07-03 20:50:37 -03:00
LICENSE_APACHE-2.0 feat(license): SPDX Headers (#1449) 2021-04-11 00:09:09 +02:00
LICENSE_MIT feat(license): SPDX Headers (#1449) 2021-04-11 00:09:09 +02:00
LICENSE.spdx feat(license): SPDX Headers (#1449) 2021-04-11 00:09:09 +02:00
package.json fix(covector): asset configuration, update action (#3425) 2022-02-13 00:56:06 -03:00
README.md fix: add supported OSs to readme, update status badges to stable (#4432) 2022-06-23 15:31:11 -03:00
renovate.json chore(ci): adjust issue labels (#4564) 2022-07-03 20:50:37 -03:00
rustfmt.toml chore: fix clippy warnings, remove license template 2022-06-24 22:01:13 -03:00
SECURITY.md fix(info) update security info 2019-08-30 16:30:20 +02:00

Tauri

status License test library FOSSA Status

Chat Server devto devto https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg support

Current Releases

Core

Component Description Version Lin Win Mac
tauri runtime core
tauri-build applies macros at build-time
tauri-codegen handles assets, parses tauri.conf.json
tauri-macros creates macros using tauri-codegen
tauri-runtime layer between Tauri and webview libraries
tauri-runtime-wry enables system-level interaction via WRY
tauri-utils common code used across the tauri crates

Tooling

Component Description Version Lin Win Mac
bundler manufacture the final binaries
api.js JS API for interaction with Rust backend
cli.rs create, develop and build apps
cli.js Node.js CLI wrapper for cli.rs

Utilities and Plugins

Component Description Version Lin Win Mac
create-tauri-app Get started with your first Tauri app
vue-cli-plugin-tauri Vue CLI plugin for Tauri

Introduction

Tauri is a framework for building tiny, blazingly fast binaries for all major desktop platforms. Developers can integrate any front-end framework that compiles to HTML, JS and CSS for building their user interface. The backend of the application is a rust-sourced binary with an API that the front-end can interact with.

The user interface in Tauri apps currently leverages tao as a window handling library on macOS and Windows, and gtk on Linux via the Tauri-team incubated and maintained WRY, which creates a unified interface to the system webview (and other goodies like Menu and Taskbar), leveraging WebKit on macOS, WebView2 on Windows and WebKitGTK on Linux.

To learn more about the details of how all of these pieces fit together, please consult this ARCHITECTURE.md document.

Get Started

If you are interested in making a tauri app, please visit the documentation website. This README is directed towards those who are interested in contributing to the core library. But if you just want a quick overview about where tauri is at in its development, here's a quick burndown:

Platforms

Tauri currently supports development and distribution on the following platforms:

Platform Versions
Windows 7 and above
macOS 10.15 and above
Linux See below
iOS/iPadOS (coming soon)
Android (coming soon)

Linux Support

For developing Tauri apps refer to the Getting Started guide on tauri.app.

For running Tauri apps we support the below configurations (these are automatically added as dependencies for .deb and are bundled for AppImage so that your users don't need to manually install them):

  • Debian (Ubuntu 18.04 and above or equivalent) with the following packages installed:
    • libwebkit2gtk-4.0-37, libgtk-3-0, libayatana-appindicator3-11
  • Arch with the following packages installed:
    • webkit2gtk, gtk3, libayatana-appindicator1
  • Fedora (latest 2 versions) with the following packages installed:
    • webkit2gtk3, gtk3, libappindicator-gtk31

1 appindicator is only required if system trays are used

App Bundles

  • App Icons
  • Build on macOS (.app, .dmg)
  • Build on Linux (.deb, AppImage)
  • Build on Windows (.exe, .msi)
  • Copy Buffer
  • Device Notifications (toast)
  • Self Updater
  • App Signing
  • Frameless Mode
  • Transparent Mode
  • Multiwindow Mode
  • Tray
  • deeplink RPC (in progress)
  • One-Time commands (coming soon)

Security Features

  • localhost-free (🔥)
  • custom protocol for secure mode
  • Dynamic ahead of Time Compilation (dAoT) with functional tree-shaking
  • functional Address Space Layout Randomization
  • OTP salting of function names and messages at runtime
  • CSP Injection

Utilities

  • GH Action for creating binaries for all platforms
  • VS Code Extension
  • Tauri Core Plugins
  • Update core dependencies automatically from the command line
  • Rust-based CLI

Comparison between Tauri and Electron

Detail Tauri Electron
Installer Size Linux 3.1 MB 52.1 MB
Memory Consumption Linux 180 MB 462 MB
Launch Time Linux 0.39s 0.80s
Interface Service Provider WRY Chromium
Backend Binding Rust Node.js (ECMAScript)
Underlying Engine Rust V8 (C/C++)
FLOSS Yes No
Multithreading Yes Yes
Bytecode Delivery Yes No
Multiple Windows Yes Yes
Auto Updater Yes Yes1
Custom App Icon Yes Yes
Windows Binary Yes Yes
macOS Binary Yes Yes
Linux Binary Yes Yes
iOS Binary Soon No
Android Binary Soon No
Desktop Tray Yes Yes
Sidecar Binaries Yes No

Notes

  1. Electron has no native auto updater on Linux, but is offered by electron-packager

Development

Tauri is a system composed of a number of moving pieces:

Infrastructure

  • Git for code management
  • GitHub for project management
  • GitHub actions for CI and CD
  • Discord for discussions
  • Netlify-hosted documentation website
  • DigitalOcean Meilisearch instance

Major Runtimes

  • Node.js for running the CLI (deno and pure rust are on the roadmap)
  • Cargo for testing, running the dev service, building binaries and as the runtime harness for the webview

Major Languages

  • Rust for the CLI
  • ECMAScript bindings to the Rust API, written in typescript
  • Rust for bindings, rust side of the API, harnesses
  • Rust plugins to Tauri backend

Operating systems

Tauri core can be developed on Mac, Linux and Windows, but you are encouraged to use the latest possible operating systems and build tools for your OS.

Contributing

Before you start working on something, it's best to check if there is an existing issue first. It's also a good idea to stop by the Discord server and confirm with the team if it makes sense or if someone else is already working on it.

Please make sure to read the Contributing Guide before making a pull request.

Thank you to everyone contributing to Tauri!

Documentation

Documentation in a polyglot system is a tricky proposition. To this end, we prefer to use inline documentation of Rust code and at JSDoc in typescript / javascript code. We autocollect these and publish them using Docusaurus v2 and netlify. Here is the hosting repository for the documentation site: https://github.com/tauri-apps/tauri-docs

Testing & Linting

Test all the things! We have a number of test suites, but are always looking to improve our coverage:

  • Rust (cargo test) => sourced via inline #[cfg(test)] declarations
  • TS (jest) => via spec files
  • Smoke Tests (run on merges to latest)
  • eslint, clippy

CI/CD

We recommend you read this article to understand better how we run our pipelines: https://www.jacobbolda.com/setting-up-ci-and-cd-for-tauri/

Organization

Tauri aims to be a sustainable collective based on principles that guide sustainable free and open software communities. To this end it has become a Programme within the Commons Conservancy, and you can contribute financially via Open Collective.

Semver

tauri is following Semantic Versioning 2.0.

Licenses

Code: (c) 2015 - 2021 - The Tauri Programme within The Commons Conservancy.

MIT or MIT/Apache 2.0 where applicable.

Logo: CC-BY-NC-ND

FOSSA Status