0.2.0 • Published 11 months ago

svelte-auth-ui v0.2.0

Weekly downloads
-
License
-
Repository
-
Last release
11 months ago

Svelte Auth UI

npm version npm downloads npm downloads license

Svelte Auth UI is a set of authentication components for Svelte. These components are designed to simplify implementing authentication in your Svelte app.

👉 View live demo

hero

Add social login buttons for popular services like Twitter, Facebook, and Google with just a few lines of code.

Out of the box you get a set of sane defaults to get you up and running quickly. Start implementing auth logic, instead of worrying about UI.

Overriding components with your own Tailwind classes is as easy as adding a class attribute to the component. With this flexibility, you can easily tailor the components to match your app's unique design and branding.

Roadmap

Warning This is work in progress. You can follow the progress on Twitter @itschrisjayden.

Login button

  • ~Pinterest~
  • ~Twitter~
  • ~Google~
  • ~Facebook~
  • ~Github~
  • ~Discord~
  • Instagram

Misc

Installation

To install Svelte Auth UI, run the following command:

  npm install -D svelte-auth-ui@latest

  # pnpm add -D svelte-auth-ui@latest
  # yarn add -D svelte-auth-ui@latest

Update your tailwind.config

Make sure you add './node_modules/svelte-auth-ui/**/*.{html,js,svelte,ts}' to your Tailwind config.

const config = {
	content: [
		'./src/**/*.{html,js,svelte,ts}',
		'./node_modules/svelte-auth-ui/**/*.{html,js,svelte,ts}' // 👈 Add this line
	],

	theme: {
		extend: {}
	},

	plugins: [],
	darkMode: 'class'
};

module.exports = config;

Usage

<script>
	import { LoginButton } from 'svelte-auth-ui';
</script>

<LoginButton provider="google" />

That's it 🚀.

Please refer to the docs to see all the available props.

FAQ

Here are some commonly asked questions and answers about Svelte Auth UI.

Q: Does this handle authentication?

A: This library only provides components and doesn't handle any authentication logic—that's up to you.

Q: How can I change the styling?

A: All you need to do is pass Tailwind classes to the class prop and you're good to go 👍.

Q: Why not export each component as it's own?

A: You may have noticed that there's one single export for the LoginButton component, this does increase bundle size by a tiny tiny bit 🤏. However, this how I've done it in most my apps—it's much easier to main. If providers ever go over 20+ I'll consider changing this, but I'll doubt we'll reach that many providers.

License

Licensed under the MIT license.

0.2.0

11 months ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago