mirror of
https://github.com/tauri-apps/tauri-docs.git
synced 2026-01-31 00:35:16 +01:00
47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
---
|
|
title: Features & Recipes
|
|
i18nReady: true
|
|
sidebar:
|
|
label: Overview
|
|
tableOfContents: false
|
|
---
|
|
|
|
import { LinkCard } from '@astrojs/starlight/components';
|
|
import FeaturesList from '@components/list/Features.astro';
|
|
import CommunityList from '@components/list/Community.astro';
|
|
import Search from '@components/CardGridSearch.astro';
|
|
import AwesomeTauri from '@components/AwesomeTauri.astro';
|
|
import TableCompatibility from '@components/plugins/TableCompatibility.astro';
|
|
import CommunityResources from '@components/CommunityResources.astro';
|
|
import { platformOptions } from 'src/types';
|
|
import { platformFilters } from 'src/api/search.ts';
|
|
|
|
Tauri comes with extensibility in mind. On this page you'll find:
|
|
|
|
- **[Official Features](#official-features)**: Built-in Tauri features and functionality
|
|
- **[Community Resources](#community-plugins)**: More plugins and recipes built by the Tauri community. You can also contribute your own on [Awesome Tauri](https://github.com/tauri-apps/awesome-tauri)
|
|
- **[Support Table](#support-table)**: A compatibility table showing which platforms are supported by each official plugin
|
|
|
|
Also we have a dedicated page for listing discovered community tauri-plugin-* [Crates and NPM packages](/plugin/index-external-resources/)
|
|
|
|
<br />
|
|
|
|
**Use the search and filter functionality to find features or community resources:**
|
|
|
|
<Search filters={platformFilters}>
|
|
#### Official Features
|
|
<FeaturesList />
|
|
#### Community Plugins
|
|
<AwesomeTauri section="plugins-no-official" />
|
|
#### Community Integrations
|
|
<AwesomeTauri section="integrations" />
|
|
</Search>
|
|
|
|
|
|
|
|
## Support Table
|
|
|
|
Hover "\*" to see notes. For more details visit the plugin page
|
|
|
|
<TableCompatibility />
|