therosbif / lucia

Authentication, simple and clean

Home Page:https://lucia-auth.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lucia

This library is still in beta! While APIs have been relatively stable recently in preparation for v1.0, expect breaking changes.

Lucia is a simple yet flexible user and session management library that provides an abstraction layer between your app and your database. It's bare-bones by design, keeping everything easy to use and understand. Get started by reading the introduction page.

Code sample

Working with Lucia looks something like this. In the code below, you're creating a new user with a email/password method, creating a new session, and creating a cookie that you can set it to the user.

const user = await auth.createUser("email", email, {
	password
});
const session = await auth.createSession(user.userId);
const sessionCookie = auth.createSessionCookie(session);

Resources

Documentation

Join the Discord server!

Changelog

CONTRIBUTING.md

Installation

npm i lucia-auth
pnpm add lucia-auth
yarn add lucia-auth

Attributions

This project would not have been possible without our contributors, thank you!

Logo by @dawidmachon, licensed under CC BY-NC-SA 4.0.

About

Authentication, simple and clean

https://lucia-auth.vercel.app

License:MIT License


Languages

Language:TypeScript 91.0%Language:Astro 4.4%Language:Svelte 1.9%Language:JavaScript 1.8%Language:CSS 0.6%Language:HTML 0.2%Language:Shell 0.1%