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

@baldim/core

v0.2.1

Published

Document database engine, resource model, extension contracts, and multidatabase manager for Baldim.

Readme

@baldim/core

Baldim's document database engine, multidatabase manager, and extension contracts.

import { Baldim } from '@baldim/core';

const database = new Baldim({
  connectionString: 'memory://my-app',
});

await database.connect();

const notes = await database.createResource({
  name: 'notes',
  attributes: {
    title: 'string',
    done: 'boolean',
  },
});

await notes.insert({ id: 'first', title: 'Try Baldim', done: false });

Storage clients with multipart support (for example @baldim/adapter-s3) can be used per insert:

await notes.insert({ id: 'big-one', title: 'Large record' }, { multipart: true });
await notes.insert(
  { id: 'big-two', title: 'Large record' },
  { multipart: { partSize: 16 * 1024 * 1024, queueConcurrency: 2 } },
);

For multiple databases, use the manager with named connections:

import { DatabaseManager } from '@baldim/core';
import '@baldim/adapter-s3';

const databases = new DatabaseManager({
  default: 'primary',
  connections: {
    primary: { connectionString: 's3://app-data' },
    analytics: { connectionString: 's3://analytics-data' },
  },
});

await databases.connect();
await databases.createResource({
  connection: 'primary', // optional: `primary` is the configured default
  name: 'users',
  attributes: { name: 'string' },
});
await databases.createResource({
  connection: 'analytics',
  name: 'events',
  attributes: { type: 'string' },
});

const users = databases.resources.users;
const events = databases.resource('events');
const analyticsEvents = databases.connection('analytics').resources.events;

Resource names created through the manager are unique across its connections. Omitting connection from createResource() uses the configured default. Use connection(name) for direct database access, or resource(name) and resources for a unified view. Resource names are globally unique inside the manager; direct resource creation is indexed, but cross-connection creation should go through the manager so it can reject duplicates before writing metadata.

The memory implementation lives in @baldim/adapter-memory and is installed by core, so memory: works without setup. Filesystem, SQLite/libSQL/D1, RedDB, and S3-compatible storage live in separate adapter packages and register when imported.

S3db remains available as a deprecated class alias so applications can migrate their imports before changing persisted data. Baldim continues to read and write the established s3db.json metadata format during this compatibility phase.

No package has been published to npm yet.