This repo demonstrates how to integrate Hanko with Svelte application for authentication and user management. It includes an Express.js backend for JWT verification and middleware for securing pages under authentication.
Hanko is an open-source authentication and user management solution with a focus on moving the login beyond passwords while being 100% deployable today.
Before you begin, ensure you have the following:
Note: You'll need to create a Authentication Project on Hanko Cloud with the App URL
http://localhost:5173
. See our docs to learn how to setup a auth project.
git clone https://github.com/teamhanko/hanko-svelte-express-starter.git
cd svelte-frontend
.env
file in the frontend directory (svelte-frontend
) and add the following environment variable:VITE_HANKO_API_URL=your-hanko-api-url
npm
, pnpm
, yarn
, or bun
). For this project, we've used pnpm
:pnpm install
pnpm dev
cd express-server
.env
file in the backend directory (express-server
) and add the following environment variable:HANKO_API_URL=your-hanko-api-url
pnpm install
pnpm dev
Start the application:
http://localhost:5173
in your web browser.Navigate to login page and experience Hanko Authentication.
Feel free to reach out to us on Discord if you get into any issues.
This project is licensed under the MIT License.