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

@eternasuno/better-auth-acebase

v0.2.0

Published

AceBase adapter for better-auth

Downloads

262

Readme

@eternasuno/better-auth-acebase

AceBase adapter for better-auth. This package lets you use AceBase as the database for your better-auth instance.

Install

pnpm add @eternasuno/better-auth-acebase acebase

Usage

import { AceBase } from 'acebase';
import { acebaseAdapter } from '@eternasuno/better-auth-acebase';

const db = new AceBase('app', { storage: { path: './data' } });
await db.ready();

export const auth = betterAuth({
  database: acebaseAdapter({ db, usePlural: false }),
  // ... rest of better-auth config
});

Config

| Option | Type | Default | Description | |---------------|-----------|---------|------------------------------------| | db | AceBase | — | The AceBase database instance | | usePlural | boolean | false | Use plural table names | | debugLogs | boolean | false | Enable adapter debug logs |

Development

pnpm install
pnpm build  # tsc -> dist/ (compiled ESM + types)
pnpm test   # runs better-auth adapter test suite
pnpm check      # tsc --noEmit + biome check
pnpm check:fix  # applies Biome fixes

Known limitations

  • Null handling: AceBase drops raw null values, so the adapter encodes field-level nulls as the sentinel string __acebase_null__:v2:1fc8c21f5a3f015e455c7379d0c42e6c on write and decodes them back on read. JSON and array fields are declared unsupported so Better Auth serializes them before adapter transforms run, preserving their nested nulls. The random-looking suffix is fixed on purpose, so accidental collisions with real data are practically impossible. The encoding is deliberately idempotent: better-auth's factory applies customTransformInput to where-clause values unconditionally, and stacked adapter factories apply it again — so a value may be encoded more than once. That rules out collision-proof escaping schemes: a stored string exactly equal to the sentinel reads back as null (theoretical risk, accepted and documented).
  • Query strategy: filters are translated into AceBase queries. Single OR-group queries push sorting and pagination down to AceBase, while counts use its native count operation. Multiple OR groups run as parallel queries over their complete matching sets, then merge, deduplicate, sort, and paginate in memory. Queries use an explicit TAKE_ALL = Number.MAX_SAFE_INTEGER where needed to avoid AceBase's implicit 100-row limit.
  • Case sensitivity: indexes are created with caseSensitive: true, so eq/in/not_in behave case-sensitively by default; better-auth's insensitive mode is implemented via case-insensitive regex matches instead.
  • Join limits: join results are capped by better-auth itself — the adapter factory always injects a numeric limit into every join config (defaultFindManyLimit ?? 100, or 1 for one-to-one), regardless of adapter behavior.

License

MIT