lucia
lucia copied to clipboard
Authentication, simple and clean
Recently attempted to do so and accidentally published the entire monorepo.
No errors are thrown when Lucia attempts to create a new row for `Refresh_Token` using a user_id of a user that does not exist when using it with PlanetScale. Not...
Highlight.js doesn't support syntax highlighting for Prisma.
Right now, the only thing (technically) stopping Lucia from being used in an external backend is the lack of cookie configuration (domain).
### TODO - [x] OAuth guide - [x] Adapter reference - [ ] Adapter testing reference - [ ] Email verification guide - [ ] Password verification guide
Since the error tests are for official adapters and technically not needed for the adapter to work, it should be made optional.
Right now forms look like this: ```svelte { return async ({ result }) => { if (result.type === 'redirect') { window.location.href = result.location; return; } applyAction(result); // default user:enhance behavior...
Since we've moved to session tokens, it'll be great if we can support in-memory data store (ie. Redis) for storing sessions. I think we can provide an additional adapter slot...