You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Yuki 58413f8034 Initial commit 2 1 year ago
..
CHANGELOG.md Initial commit 2 1 year ago
LICENSE_APACHE-2.0 Initial commit 2 1 year ago
LICENSE_MIT Initial commit 2 1 year ago
README.md Initial commit 2 1 year ago
app-5190a154.d.ts Initial commit 2 1 year ago
app.cjs Initial commit 2 1 year ago
app.d.ts Initial commit 2 1 year ago
app.js Initial commit 2 1 year ago
chunk-3O263AOJ.js Initial commit 2 1 year ago
chunk-4CXLGJ6R.js Initial commit 2 1 year ago
chunk-4NZJJ336.js Initial commit 2 1 year ago
chunk-5UWJICAP.js Initial commit 2 1 year ago
chunk-6IDLE7HB.js Initial commit 2 1 year ago
chunk-6PDK3LJA.js Initial commit 2 1 year ago
chunk-6XWZL67Z.js Initial commit 2 1 year ago
chunk-CICBN6X2.js Initial commit 2 1 year ago
chunk-DIFM6EX4.js Initial commit 2 1 year ago
chunk-FEIY7W7S.js Initial commit 2 1 year ago
chunk-GP2EXCRB.js Initial commit 2 1 year ago
chunk-ITP3W3MJ.js Initial commit 2 1 year ago
chunk-LRLSM7JQ.js Initial commit 2 1 year ago
chunk-M3Y6ZK7U.js Initial commit 2 1 year ago
chunk-PEDMYRP6.js Initial commit 2 1 year ago
chunk-RKMHWDGH.js Initial commit 2 1 year ago
chunk-V5J25SYE.js Initial commit 2 1 year ago
chunk-WJKH4UU7.js Initial commit 2 1 year ago
chunk-XH7VLPQH.js Initial commit 2 1 year ago
cli-373e13ed.d.ts Initial commit 2 1 year ago
cli.cjs Initial commit 2 1 year ago
cli.d.ts Initial commit 2 1 year ago
cli.js Initial commit 2 1 year ago
clipboard-79413165.d.ts Initial commit 2 1 year ago
clipboard.cjs Initial commit 2 1 year ago
clipboard.d.ts Initial commit 2 1 year ago
clipboard.js Initial commit 2 1 year ago
dialog-20ff401c.d.ts Initial commit 2 1 year ago
dialog.cjs Initial commit 2 1 year ago
dialog.d.ts Initial commit 2 1 year ago
dialog.js Initial commit 2 1 year ago
event-30ea0228.d.ts Initial commit 2 1 year ago
event.cjs Initial commit 2 1 year ago
event.d.ts Initial commit 2 1 year ago
event.js Initial commit 2 1 year ago
fs-6ad2a328.d.ts Initial commit 2 1 year ago
fs.cjs Initial commit 2 1 year ago
fs.d.ts Initial commit 2 1 year ago
fs.js Initial commit 2 1 year ago
globalShortcut-003b7421.d.ts Initial commit 2 1 year ago
globalShortcut.cjs Initial commit 2 1 year ago
globalShortcut.d.ts Initial commit 2 1 year ago
globalShortcut.js Initial commit 2 1 year ago
http-43c39402.d.ts Initial commit 2 1 year ago
http.cjs Initial commit 2 1 year ago
http.d.ts Initial commit 2 1 year ago
http.js Initial commit 2 1 year ago
index.cjs Initial commit 2 1 year ago
index.d.ts Initial commit 2 1 year ago
index.js Initial commit 2 1 year ago
mocks.cjs Initial commit 2 1 year ago
mocks.d.ts Initial commit 2 1 year ago
mocks.js Initial commit 2 1 year ago
notification-6cd45c32.d.ts Initial commit 2 1 year ago
notification.cjs Initial commit 2 1 year ago
notification.d.ts Initial commit 2 1 year ago
notification.js Initial commit 2 1 year ago
os-0303c6d6.d.ts Initial commit 2 1 year ago
os.cjs Initial commit 2 1 year ago
os.d.ts Initial commit 2 1 year ago
os.js Initial commit 2 1 year ago
package.json Initial commit 2 1 year ago
path-c062430b.d.ts Initial commit 2 1 year ago
path.cjs Initial commit 2 1 year ago
path.d.ts Initial commit 2 1 year ago
path.js Initial commit 2 1 year ago
process-63838be1.d.ts Initial commit 2 1 year ago
process.cjs Initial commit 2 1 year ago
process.d.ts Initial commit 2 1 year ago
process.js Initial commit 2 1 year ago
shell-efff51a2.d.ts Initial commit 2 1 year ago
shell.cjs Initial commit 2 1 year ago
shell.d.ts Initial commit 2 1 year ago
shell.js Initial commit 2 1 year ago
tauri-605fa63e.d.ts Initial commit 2 1 year ago
tauri.cjs Initial commit 2 1 year ago
tauri.d.ts Initial commit 2 1 year ago
tauri.js Initial commit 2 1 year ago
updater-6b72a601.d.ts Initial commit 2 1 year ago
updater.cjs Initial commit 2 1 year ago
updater.d.ts Initial commit 2 1 year ago
updater.js Initial commit 2 1 year ago
window.cjs Initial commit 2 1 year ago
window.d.ts Initial commit 2 1 year ago
window.js Initial commit 2 1 year ago

README.md

@tauri-apps/api

status License test library FOSSA Status Chat Server website https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg support

Component Version
@tauri-apps/api

About Tauri

Tauri is a polyglot and generic system that is very composable and allows engineers to make a wide variety of applications. It is used for building applications for Desktop Computers using a combination of Rust tools and HTML rendered in a Webview. Apps built with Tauri can ship with any number of pieces of an optional JS API / Rust API so that webviews can control the system via message passing. In fact, developers can extend the default API with their own functionality and bridge the Webview and Rust-based backend easily.

Tauri apps can have custom menus and have tray-type interfaces. They can be updated, and are managed by the user's operating system as expected. They are very small, because they use the system's webview. They do not ship a runtime, since the final binary is compiled from rust. This makes the reversing of Tauri apps not a trivial task.

This module

This is a typescript library that creates cjs and esm JavaScript endpoints for you to import into your Frontend framework so that the Webview can call and listen to backend activity. We also ship the pure typescript, because for some frameworks this is more optimal. It uses the message passing of webviews to their hosts.

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

Installation

The preferred method is to install this module locally as a dependency:

$ npm install --save @tauri-apps/api
$ yarn add @tauri-apps/api

Semver

tauri is following Semantic Versioning 2.0.

Licenses

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

MIT or MIT/Apache 2.0 where applicable.

Logo: CC-BY-NC-ND