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

@systemoperator/depot

v0.1.0

Published

Content-addressable storage, item tracking, dependency management, and writeback engine

Readme

@systemoperator/depot

Content-addressable storage, item tracking, dependency management, and writeback engine.

install

npm install @systemoperator/depot

modules

core (import from @systemoperator/depot)

  • hashContent(string), hashBytes(ArrayBuffer) - SHA-256 hashing via Web Crypto
  • putCAS(bucket, content), getCAS(bucket, hash), hasCAS(bucket, hash) - content-addressable storage for R2
  • storeRawAndMaterialized(bucket, rawData, materializedContent, hashFn) - store raw API response + materialized content
  • Item, Space, ItemDependency - core type interfaces
  • DependencyStore interface + helpers: recordDependencies, getDependencies, getReverseDependencies, markDependentsStale, clearDependencies, finalizeMaterialization

ltree (import from @systemoperator/depot/ltree)

Path helpers for PostgreSQL ltree columns:

  • buildPath(parentPath, id) - create child path
  • parsePath(path) - split into ID array
  • getDepth(path) - count levels
  • getParentPath(path) - parent path or null for roots
  • getRootId(path) - first segment
  • rebasePath(path, oldPrefix, newPrefix) - rewrite paths on move

writeback (import from @systemoperator/depot/writeback)

Bidirectional sync engine: parse edited content, diff against base, map to API actions.

  • parseConnectorMarkdown(content, schema) - parse markdown with YAML frontmatter
  • diffDocuments(base, current, schema) - semantic diff between two parsed documents
  • mapChangesToActions(diff, schema, resolver, transforms) - convert changes to API actions
  • SchemaRegistry class - register and query connector schemas
  • WritebackEngine class - full pipeline with store interfaces
  • built-in schemas: linear-issue, linear-document, notion-page, confluence-page

usage

import { hashContent, putCAS, buildPath } from '@systemoperator/depot';
import { WritebackEngine, createDefaultRegistry } from '@systemoperator/depot/writeback';

Consumers implement store interfaces (DependencyStore, ItemStore, ContentStore, WritebackExecutor) for their own DB layer.

development

npm test       # run tests
npm run build  # compile TypeScript

license

MIT