npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mikro-orm-better-auth

v1.1.1

Published

Better Auth adapter for MikroORM with ts-morph entity generation.

Downloads

514

Readme

mikro-orm-better-auth

Better Auth adapter for MikroORM, with a createSchema implementation that generates MikroORM entity files via ts-morph.

Install

pnpm add better-auth @mikro-orm/core @mikro-orm/knex prettier ts-morph
pnpm add -D @better-auth/test-utils @mikro-orm/sqlite typescript vitest

Usage

import { betterAuth } from "better-auth";
import { mikroOrmAdapter } from "mikro-orm-better-auth";
import { MikroORM } from "@mikro-orm/core";
import { SqliteDriver } from "@mikro-orm/sqlite";

const orm = await MikroORM.init<SqliteDriver>({
  driver: SqliteDriver,
  dbName: "app.sqlite",
  entities: [],
});

export const auth = betterAuth({
  database: mikroOrmAdapter(() => orm.em),
});

With RequestContext (per-request EntityManager isolation):

import { RequestContext } from "@mikro-orm/core";

export const auth = betterAuth({
  database: mikroOrmAdapter(() => RequestContext.getEntityManager()! as SqlEntityManager),
});

Generate Entity

Better Auth calls the adapter's createSchema hook, and this adapter uses generateEntity as the configuration key for controlling entity generation. By default it writes to src/auth/entities, or to the directory implied by the output path Better Auth passes in.

const adapter = mikroOrmAdapter(() => orm.em, {
  generateEntity: {
    outputDir: "src/auth/entities",
  },
});

Generated files:

  • use @Entity, @PrimaryKey, and @Property
  • include one managed *.entity.ts file per Better Auth model
  • reflect Better Auth table and field name transforms
  • are patched in place on regeneration instead of being fully overwritten
  • are formatted with Prettier before they are written, using the resolved config for the target file path
  • preserve user-owned imports, decorators, methods, extra properties, and comments
  • only update generator-owned fragments such as managed fields, types, and MikroORM decorators
  • do not add management comments or sidecar state files to generated entities
  • do not automatically delete existing files or unmatched properties during regeneration

Managed file boundaries:

  • the generator owns Better Auth-managed fields and MikroORM decorators such as @Entity, @PrimaryKey, and @Property
  • everything else in the file is treated as user-owned code and is preserved during regeneration whenever the file can be patched safely

Unsupported or rejected cases:

  • if an existing file does not contain the expected exported entity class, generation fails instead of guessing how to patch it
  • direct edits to generator-owned field definitions or MikroORM decorator arguments may be replaced on the next generation

Scope

  • SQL-oriented runtime adapter using MikroORM's SQL entity manager
  • create, update, updateMany, delete, deleteMany, findOne, findMany, count
  • transaction support through em.transactional(...)
  • native joins intentionally deferred

Test

pnpm test