tauri/README.md

187 lines
9.6 KiB
Markdown
Raw Normal View History

<h1 style="font-family:monospace, courier; font-size:3em"><img align="left" src="app-icon.png" height="52" width="52">&nbsp;TAURI</h2>
[![status](https://img.shields.io/badge/Status-Alpha-yellow.svg)](https://github.com/tauri-apps/tauri/tree/dev)
[![license](https://img.shields.io/badge/license-MIT%20or%20Apache%202-orange.svg)](https://opencollective.com/tauri)
[![test library](https://img.shields.io/github/workflow/status/tauri-apps/tauri/test%20library?label=test%20library)](https://github.com/tauri-apps/tauri/actions?query=workflow%3A%22test+library%22)
2019-08-28 14:28:49 +03:00
[![Chat Server](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/SpmNs4S)
[![devto](https://img.shields.io/badge/blog-dev.to-black.svg)](https://dev.to/tauri)
[![devto](https://img.shields.io/badge/documentation-tauri.studio-purple.svg)](https://tauri.studio/docs/getting-started/intro)
[![https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg](https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg)](https://good-labs.github.io/greater-good-affirmation)
[![support](https://img.shields.io/badge/sponsor-open%20collective-blue.svg)](https://opencollective.com/tauri)
```yml
Tauri Apps
footprint: miniscule
performance: ludicrous
flexibility: gymnastic
security: hardened
```
## Current Releases
| Component | Description | Version | Lin | Win | Mac |
|-----------|---------|------|-----|-----|-----|
| [**tauri.js CLI**](https://github.com/tauri-apps/tauri/tree/dev/cli/tauri.js) | create, develop and build apps | [![](https://img.shields.io/npm/v/tauri.svg)](https://www.npmjs.com/package/tauri) |✅|✅|✅|
| [**tauri core**](https://github.com/tauri-apps/tauri/tree/dev/tauri) | binding to the low level WEBVIEW | [![](https://img.shields.io/crates/v/tauri.svg)](https://crates.io/crates/tauri)|✅|✅|✅|
| [**tauri api**](https://github.com/tauri-apps/tauri/tree/dev/tauri-api) | interface with the underlying OS | [![](https://img.shields.io/crates/v/tauri-api.svg)](https://crates.io/crates/tauri-api) |✅|✅|✅ |
| [**tauri bundler**](https://github.com/tauri-apps/tauri/tree/dev/cli/tauri-bundler) | manufacture the final binaries | [![](https://img.shields.io/crates/v/tauri-bundler.svg)](https://crates.io/crates/tauri-bundler) |✅|✅|✅ |
| [**tauri utils**](https://github.com/tauri-apps/tauri/tree/dev/tauri-utils) | common tools for tauri| [![](https://img.shields.io/crates/v/tauri-utils.svg)](https://crates.io/crates/tauri-utils) |✅|✅|✅ |
| [**tauri updater**](https://github.com/tauri-apps/tauri/tree/dev/tauri-updater) [WIP] | update the userland app | [![](https://img.shields.io/crates/v/tauri-updater.svg)](https://crates.io/crates/tauri-updater) | | | |
## 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](https://github.com/zserge/webview).
## Get Started
If you are interested in making a tauri-app, please visit the [documentation website](https://tauri.studio). 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:
2019-07-31 11:41:46 +03:00
#### App Bundles
- [x] App Icons
- [x] Build on MacOS (.app, .dmg)
- [x] Build on Linux (.deb, AppImage)
- [x] Build on Windows (.exe, .msi)
2019-07-31 11:41:46 +03:00
- [x] Copy Buffer
- [x] Device Notifications (toast)
- [ ] Self Updater (in progress)
- [ ] deeplink RPC (in progress)
- [ ] App Signing (coming soon)
- [ ] Frameless Mode (coming soon)
- [ ] Transparent Mode (coming soon)
- [ ] Multiwindow Mode (coming soon)
- [ ] Tray (coming soon)
2019-07-31 11:41:46 +03:00
#### API
- [x] setTitle - set the window title
- [x] command - make custom API interfaces
- [x] execute - STDOUT Passthrough with command invocation
2019-07-31 11:41:46 +03:00
- [x] open - open link in a browser
- [x] event - two part api consisting of `emit` and `listen`
- [x] httpRequest - command rust to make an http request
- [x] openDialog - native file chooser dialog
- [x] saveDialog - native file saver dialog
- [x] readDir - list files in a directory
- [x] createDir - create a directory
- [x] removeDir - remove a directory
- [x] removeFile - remove a file
- [x] renameFile - rename a file
- [x] copyFile - copy a file to a new destination
- [x] writeFile - write file to local filesystem
- [x] writeBinaryFile - write binary file to local filesystem
2019-07-31 11:41:46 +03:00
- [x] readBinaryFile - read binary file from local filesystem
- [x] readTextFile - read text file from local filesystem
### Security Features
- [x] localhost-free mode (:fire:)
2019-07-31 11:41:46 +03:00
- [x] Dynamic ahead of Time Compilation (dAoT) with functional tree-shaking
- [x] functional Address Space Layout Randomization
- [x] OTP salting of function names and messages at runtime
2019-08-01 11:34:20 +03:00
- [x] CSP Injection
- [ ] Frida-based harness for Post-Binary Analysis (in progress)
### Comparison between Tauri and Electron
2019-07-13 20:14:13 +03:00
| Detail | Tauri | Electron |
2019-07-13 20:14:13 +03:00
|--|--------|----------|
| Binary Size MacOS | 0.6 MB (1) | 47.7 MB |
2019-07-13 20:14:13 +03:00
| Memory Consumption MacOS | 13 MB | 34.1 MB |
| Interface Service Provider | Varies | Chromium |
| Backend Binding | Rust | Node.js (ECMAScript) |
2019-07-31 11:41:46 +03:00
| Underlying Engine | C/C++ | V8 (C/C++) |
2019-07-13 20:14:13 +03:00
| FLOSS | Yes | No |
| Multithreading | Yes | No |
| Bytecode Delivery | Yes | No |
| Can Render PDF | Yes | No |
2019-08-01 11:34:20 +03:00
| Multiple Windows | Soon | Yes |
| Auto Updater | Soon | Yes (2) |
2019-07-13 20:14:13 +03:00
| 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 |
| Localhost Server | Yes | Yes |
| No localhost option | Yes | No |
| Desktop Tray | Soon | Yes |
| Splashscreen | Yes | Yes |
| Sidecar Binaries | Yes | No |
2019-07-13 20:14:13 +03:00
#### Notes
1. This is the smallest known binary, depending on your framework the size may be different.
2. 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](https://github.com/tauri-apps/tauri/blob/dev/.github/CONTRIBUTING.md).
### 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 master)
- 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/
2019-08-28 14:28:49 +03:00
## Organization
Tauri aims to be a sustainable collective based on principles that guide [sustainable
free and open software communities](https://sfosc.org). You can get involved in many ways.
2019-07-13 20:14:13 +03:00
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](https://github.com/zserge) for the original webview approach and
go bindings
- [Burtonago](https://github.com/burtonageo) for the Cargo Bundle prototype
## Contributing
Please make sure to read the [Contributing Guide](./.github/CONTRIBUTING.md)
2019-08-28 14:28:49 +03:00
before making a pull request.
2019-08-28 14:28:49 +03:00
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
2019-08-28 14:28:49 +03:00
**tauri** is following [Semantic Versioning 2.0](https://semver.org/).
2019-07-13 20:14:13 +03:00
## 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.
2019-07-13 20:14:13 +03:00
Logo: CC-BY-NC-ND
- Original Tauri Logo Designs by [Daniel Thompson-Yvetot](https://github.com/nothingismagick) and [Guillaume Chau](https://github.com/akryum)