sveltekit-with-lucia-auth Svelte Themes

Sveltekit With Lucia Auth

This is an example project showcasing authentication processes using Lucia.

SvelteKit Auth Example with Lucia and Drizzle

This is an example project showcasing authentication processes using Lucia for state management and Drizzle for ORM (Object-Relational Mapping) in a SvelteKit application.

Overview

This project demonstrates how to implement authentication features such as user signup, login, logout, and protected routes using Lucia for state management and Drizzle for ORM.

Features

  • User signup: Allow users to create a new account.
  • User login: Allow existing users to authenticate themselves.
  • User logout: Allow authenticated users to log out of their accounts.
  • Protected routes: Restrict access to certain routes to authenticated users only.

Installation

  1. Clone the repository:

    git clone https://github.com/hrasekj/sveltekit-with-lucia-auth.git
    
  2. Navigate into the project directory:

    cd sveltekit-auth-example
    
  3. Install dependencies:

    pnpm install
    
  4. Use .env.example to create a new .env file:

    cp .env.example .env
    
  5. Initialize database:

    docker-compose up -d
    
  6. Push migrations to the database:

    npx drizzle-kit push:mysql
    

Usage

  1. Start the development server:

    pnpm dev
    
    # or start the server and open the app in a new browser tab
    pnpm dev --open
    
  2. In browser navigate to http://localhost:5173.

  3. Explore the authentication features implemented in the application.

Development

To create new migration files, run:

npx drizzle-kit generate:mysql

Then push the new migration to the database.

Dependencies

  • SvelteKit: A framework for building web applications.
  • Lucia: Authentication library.
  • Drizzle ORM: An ORM (Object-Relational Mapping) library.

Sources

Here are some resources that helped me create this project:

License

This project is licensed under the MIT License - see the LICENSE file for details.

Top categories

svelte logo

Need a Svelte website built?

Hire a professional Svelte developer today.
Loading Svelte Themes