password hashing on cloudflare pages
Svelte -> Lucia -> argon2 Lucia is a reference for session-based web app auth. It contains example code snippets and projects for implementing session-based auth within SvelteKit and other JS projects. You can add code which follows the Lucia guide to your project with npx sv create when creating a new project or npx sv add lucia for an existing project. src: svelte recommends using Lucia npx sv add lucia uses import { hash, verify } from '@node-rs/argon2'; and example code from Lucia also uses the same library...