docs: community-plugins (#791)

This commit is contained in:
Multinite
2024-12-08 17:59:23 +10:00
committed by GitHub
parent 95fd568231
commit bf34533e4d
2 changed files with 45 additions and 1 deletions

View File

@@ -944,6 +944,35 @@ export const contents: Content[] = [
),
href: "/docs/plugins/jwt",
},
{
title: "Other",
group: true,
href: "/docs/plugins/1st-party-plugins",
icon: () => <LucideAArrowDown className="w-4 h-4" />,
},
{
title: "Community Plugins",
href: "/docs/plugins/community-plugins",
icon: () => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="1em"
height="1em"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
className="lucide lucide-users"
>
<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2" />
<circle cx="9" cy="7" r="4" />
<path d="M22 21v-2a4 4 0 0 0-3-3.87" />
<path d="M16 3.13a4 4 0 0 1 0 7.75" />
</svg>
),
},
],
},
{
@@ -1027,7 +1056,7 @@ export const contents: Content[] = [
{
title: "Security",
href: "/docs/reference/security",
icon: () => <ShieldCheck className="text-current w-4 h-4" />,
icon: () => <ShieldCheck className="w-4 h-4 text-current" />,
},
],
},

View File

@@ -0,0 +1,15 @@
---
title: Community Plugins
description: A list of recommended community plugins.
---
This page showcases a list of recommended community made plugins.
We encourage you to create custom plugins and maybe get added to the list!
To create your own custom plugin, get started by reading our [plugins documentation](https://www.better-auth.com/docs/concepts/plugins). And if you want to share your plugin with the community, please open a pull request to add it to this list.
| Plugin | Description |
| ------------------------------------------------------------------------------------| ---------------------------------------------------------------------------------------------------- |
| [better-auth-harmony](https://github.com/gekorm/better-auth-harmony/) | Email & phone normalization and additional validation, blocking over 55,000 temporary email domains. |
| [validation-better-auth](https://github.com/Daanish2003/validation-better-auth) | Validate API request using any validation library (e.g., Zod, Yup) |