Build smaller, faster, and more secure desktop applications with a web frontend.
Go to file
github-actions[bot] e267ebf1f1
Apply Version Updates From Current Changes (#1486)
* apply version updates

* adjust versions to beta-rc

Co-authored-by: jbolda <jbolda@users.noreply.github.com>
Co-authored-by: Jacob Bolda <me@jacobbolda.com>
2021-04-14 13:51:25 -05:00
.changes Apply Version Updates From Current Changes (#1486) 2021-04-14 13:51:25 -05:00
.github chore: remove IOTA publish action (#1453) 2021-04-12 13:47:19 +02:00
.husky chore/licenses (#1461) 2021-04-12 09:55:00 -03:00
.scripts chore/licenses (#1461) 2021-04-12 09:55:00 -03:00
core Apply Version Updates From Current Changes (#1486) 2021-04-14 13:51:25 -05:00
examples feat(examples): showcase basics of multiwindows feature on api example (#1468) 2021-04-12 23:35:57 -03:00
tooling Apply Version Updates From Current Changes (#1486) 2021-04-14 13:51:25 -05:00
.editorconfig feat(icons): add and test icon generation for tauri (#55) 2019-11-17 22:30:14 +01:00
.gitignore fix(cli.rs): crate packaging (#1481) 2021-04-14 13:37:29 -03:00
.license_template feat(license): SPDX Headers (#1449) 2021-04-11 00:09:09 +02:00
app-icon.png Feat/new logo (#429) 2020-02-15 20:58:36 +01:00
Cargo.toml Refactor(tauri): move tauri-api and tauri-updater to tauri (#1455) 2021-04-12 01:09:41 -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
maskfile.md chore/licenses (#1461) 2021-04-12 09:55:00 -03:00
package.json refactor(repo): add /tooling folder (#1457) 2021-04-12 01:59:25 -03:00
README.md refactor(repo): add /tooling folder (#1457) 2021-04-12 01:59:25 -03:00
renovate.json refactor(repo): add /tooling folder (#1457) 2021-04-12 01:59:25 -03:00
rust-toolchain chore(rust-toolchain): use 1.51.0 (#1459) 2021-04-12 15:44:44 +02:00
rustfmt.toml feat(license): SPDX Headers (#1449) 2021-04-11 00:09:09 +02:00
SECURITY.md fix(info) update security info 2019-08-30 16:30:20 +02:00

 TAURI

status license test library

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

Tauri Apps
  footprint:   minuscule
  performance: ludicrous
  flexibility: gymnastic
  security:    hardened

Current Releases

Component Description Version Lin Win Mac
cli.rs create, develop and build apps
cli.js Node.js CLI wrapper for cli.rs
core runtime core
bundler manufacture the final binaries
utils common tools for tauri

Introduction

Tauri is a framework for building tiny, blazing 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 Cocoa/WebKit on macOS, gtk-webkit2 on Linux and MSHTML (IE10/11) or Webkit via Edge on Windows. Tauri uses (and contributes to) the MIT licensed project that you can find at webview and the related webview organization.

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:

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 (in progress)
  • deeplink RPC (in progress)
  • One-Time commands (coming soon)
  • App Signing (coming soon)
  • Frameless Mode (coming soon)
  • Transparent Mode (coming soon)
  • Multiwindow Mode (coming soon)
  • Tray (coming soon)

API

  • setTitle - set the window title
  • command - make custom API interfaces
  • execute - STDOUT Passthrough with command invocation
  • open - open link in a browser
  • event - two part api consisting of emit and listen
  • httpRequest - command rust to make an http request
  • openDialog - native file chooser dialog
  • saveDialog - native file saver dialog
  • readDir - list files in a directory
  • createDir - create a directory
  • removeDir - remove a directory
  • removeFile - remove a file
  • renameFile - rename a file
  • copyFile - copy a file to a new destination
  • writeFile - write file to local filesystem
  • writeBinaryFile - write binary file to local filesystem
  • readBinaryFile - read binary file from local filesystem
  • readTextFile - read text file from local filesystem
  • channel - stream constant data to the webview

Security Features

  • localhost-free 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
  • Frida-based harness for Post-Binary Analysis (in progress)

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 with deno binding

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 .80s
Interface Service Provider Varies Chromium
Backend Binding Rust Node.js (ECMAScript)
Underlying Engine C/C++ V8 (C/C++)
FLOSS Yes No
Multithreading Yes Yes
Bytecode Delivery Yes No
Multiple Windows Soon Yes
Auto Updater Soon Yes (1)
Cross Platform Yes Yes
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 Soon 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

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

  • typescript for the CLI
  • javascript for the JS-side of the API
  • rust for bindings, rust side of the API, harnesses
  • C / obj-c for interfacing with the webviews

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.

Contribution Flow

Before you start working on something, it is best to check if there is an existing issue first. Also it is a good idea to stop by the Discord guild and confirm with the team if it makes sense or if someone is already working on it. If you want to read more about this, please see this page.

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. You can get involved in many ways.

This has been done with our best attempt at due diligence and in respect of the original authors. Thankyou - this project would never have been possible without your amazing contribution to open-source and we are honoured to carry the torch further. Of special note:

  • zserge for the original webview approach and go bindings
  • Burtonago for the Cargo Bundle prototype

Contributing

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

Thank you to all the people who already contributed to Tauri!

Special thanks to the development team at Volentix Labs for the encouragement and support in the early phases of Tauri, notably Rhys Parry and Gregory Luneau.

Semver

tauri is following Semantic Versioning 2.0.

Licenses

Code: (c) 2015 - present - Daniel Thompson-Yvetot, Lucas Nogueira, Tensor, Serge Zaitsev, George Burton and all the other amazing contributors.

MIT or MIT/Apache 2.0 where applicable.

Logo: CC-BY-NC-ND