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

@domecs/persist

v1.0.0

Published

DOMECS persistence: save / load / migrate over WorldSnapshot, Result-typed throughout (BETTER_ERRORS Phase 2).

Readme

@domecs/persist

Result-typed save / load / migrate over WorldSnapshot for DOMECS.

Every seam returns a Result<…, DomecsError> — I/O failures surface as persist_io and version upgrades as migration_failed, never as thrown exceptions. A failed save or migration leaves the target slot's prior bytes intact. See doc/BETTER_ERRORS.md Phase 2 for the discipline this enforces.

Status: v1.0 — stable.

Install

npm install @domecs/persist

Quick start

import { createWorld, defineComponent, entry } from '@domecs/core'
import { save, load, createMemoryStorage } from '@domecs/persist'

const Health = defineComponent<{ hp: number }>('Health', { defaults: { hp: 10 } })

const storage = createMemoryStorage()
const world = createWorld()
world.spawn([entry(Health, { hp: 7 })])

// Stamps `savedAt` into the snapshot envelope; merge extra metadata via opts.
const saved = save(world, storage, 'slot-1', { meta: { label: 'checkpoint' } })
if (!saved.ok) console.error(saved.error)

const restored = createWorld()
const loaded = load(restored, storage, 'slot-1')
if (!loaded.ok) console.error(loaded.error)

Main API

  • save(world, storage, slot, opts?) — serialize a snapshot; opts.meta is merged into the envelope and a numeric savedAt is stamped.
  • load(world, storage, slot, opts?) — parse, migrate to targetVersion (default SNAPSHOT_VERSION), then restore. opts.migrations is overlaid on BUILTIN_MIGRATIONS (caller keys win), so a legacy v1 save upgrades transparently with no caller config.
  • migrate(snapshot, target, migrations) — run a version migration chain.
  • BUILTIN_MIGRATIONS — framework-supplied steps applied as the floor beneath any caller chain. Ships the 1 → 2 resources bump (a v1 snapshot simply lacks resources, so the step is a pure version bump).
  • withBuiltinMigrations(user?) — overlay a caller MigrationMap on the built-ins (caller keys win); returns the built-ins unchanged when user is empty. load() uses this internally.
  • pruneTransientOnlyEntities() — plugin; install once to strip transient-only / bare entities from every saved envelope (the persisted-path equivalent of core's snapshot({ pruneEmptyEntities: true })).
  • createSnapshotHistory(world, opts?) — bounded undo/redo ring over snapshots: push / undo / redo / canUndo / canRedo / clear, with redo-branch truncation, a limit ring, and toJSON / load for export.
  • diffSnapshots(prev, next) — entity-level diff (added / removed / changed).
  • createMemoryStorage() — in-memory Storage for tests/non-persistent use.
  • Types: SaveOptions, LoadOptions, Migration, MigrationMap, MigrationFailedError, Storage, SnapshotHistory, SnapshotHistoryOptions, SnapshotDiff.

Related packages

  • @domecs/core — provides world.snapshot() / world.restore().

License

MIT