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

@revisium/core

v2.9.2

Published

Revisium is a tool (UI/API) inspired by JSON (JSON Schema) and Git, designed to provide a flexible and low-level headless CMS solution.

Readme

@revisium/core

Backend API for Revisium — unopinionated data platform with referential integrity.

Your schema. Your data. Full control.

License Quality Gate Status Coverage npm Docker

Referential integrity with foreign keys at any depth. Git-like versioning: branches, revisions, drafts. Schema evolution: migrations with data transformations.

Part of the Revisium ecosystem. Available on npm | Docker Hub.

Architecture

┌─────────────────────────────────────────────────────────┐
│                      API Layer                          │
├─────────────────┬─────────────────┬─────────────────────┤
│    GraphQL      │    REST API     │        MCP          │
│  (Apollo Server)│                 │  (Model Context     │
│                 │                 │   Protocol)         │
├─────────────────┴─────────────────┴─────────────────────┤
│                   Application Layer                     │
│              CQRS: Commands & Queries                   │
├─────────────────────────────────────────────────────────┤
│                    Domain Layer                         │
│         Business Logic, Validation, Events              │
├─────────────────────────────────────────────────────────┤
│                 Infrastructure Layer                    │
├───────────┬─────────┬───────────┬───────────────────────┤
│ PostgreSQL│  Redis  │    S3     │        SMTP           │
│ (Prisma)  │ (Cache) │ (Files)   │       (Email)         │
└───────────┴─────────┴───────────┴───────────────────────┘

API Layer

| Interface | Description | |-----------|-------------| | GraphQL | Primary API. Apollo Server with subscriptions | | REST | HTTP endpoints for integrations | | MCP | Model Context Protocol for AI agents (Claude, etc.) |

Application Layer

CQRS pattern separates read and write operations:

  • Commands — mutations (create, update, delete)
  • Queries — data retrieval with filtering and pagination

Domain Layer

  • JSON Schema validation
  • Foreign key integrity checks
  • Revision and branch management
  • Schema migration engine

Infrastructure

| Component | Purpose | |-----------|---------| | PostgreSQL | Primary data storage (via Prisma ORM) | | Redis | Caching and pub/sub | | S3 | File storage | | SMTP | Email notifications |

Documentation

  • ENV.md — Environment variables
  • docs/ — Technical documentation

Related Packages

| Package | Description | |---------|-------------| | @revisium/endpoint | Dynamic GraphQL/REST API generator | | @revisium/schema-toolkit | JSON Schema utilities, validation, and transformation helpers | | @revisium/formula | Formula expression parser and evaluator for computed fields | | revisium-cli | CLI for migrations — save and apply schema & data changes across environments |

License

Apache 2.0 — See Revisium for full license.