2.0.0 • Published 10 months ago

@tony-stark-eth/lucia-mikro-orm-adapter v2.0.0

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
10 months ago

@tony-stark-eth/lucia-mikro-orm-adapter

Mikro ORM v6 adapter for Lucia auth v3 library.

Installation

npm i -S @tony-stark-eth/lucia-mikro-orm-adapter

Usage

import { lucia } from "lucia";
import { MikroOrmAdapter, User, Session, OAuthProviderAttributes } from "@tony-stark-eth/lucia-mikro-orm-adapter";

export const orm = await MikroORM.init({
  // register auth entities
  entities: [User, Session, OAuthProviderAttributes],
  // ...
});

export const auth = lucia({
  adapter: MikroOrmAdapter(orm.em),
  // ...
});
2.0.0

10 months ago

1.0.0

10 months ago