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

ramose

v0.3.0

Published

Ramose — an immutable, Datomic-inspired graph database for Cloudflare (Workers + Durable Objects + R2), built on Effect. One package: the schema and client (`ramose/db`), the Alchemy resources (`ramose`), the peer Worker (`ramose/worker`), the React hooks

Readme

ramose

An immutable, Datomic-inspired graph database for Cloudflare (Workers + Durable Objects + R2), built on Effect. Your data model is one TypeScript value; queries are values too, and a live query re-runs itself when the database changes.

bun add ramose react react-dom

npm install and pnpm add work the same. React is optional — a server-only app needs neither it nor react-dom. Everything else Ramose runs on (effect, alchemy, the two @effect/platform-* packages) comes with this package at a version that resolves, so there is nothing else to pin.

Ramose is pre-release: expect the API to change between minor versions.

The five entries

| Import | What it is | | --- | --- | | ramose/db | Schema, the client, Db<C>, the tagged errors. Portable — browser, Worker, Node, Bun, a test. | | ramose | Everything on ramose/db plus the deploy-time half: the Server and Database resources, the capabilities, the transports, typed policy. | | ramose/worker | The peer Worker itself. Hand it to Alchemy as main: import.meta.resolve("ramose/worker")main is a path, so a bare specifier there silently resolves to nothing. | | ramose/react | RamoseProvider, useLive, useQuery, usePull, useBasis, useTransact. Hooks only. | | ramose/better-auth (+ /client) | The Better Auth plugin pair that mints and carries the workspace-scoped JWT a peer verifies. |

Two conveniences: ramose/schema re-exports effect/Schema and ramose/effect re-exports the Effect modules Ramose's own API hands you, so a project can name one package instead of two. They are re-exports of the same module instances, not copies — effect/Schema and ramose/schema are interchangeable.

A first look

// schema.ts
import * as Ramose from "ramose/db";
import * as Schema from "effect/Schema";

export const Todo = Ramose.Namespace("todo", {
  title: Ramose.Attr(Schema.String),
  done: Ramose.Attr(Schema.Boolean),
});

export const Todos = Ramose.Catalog({ todo: Todo });
// App.tsx
import { useLive } from "ramose/react";
import { db } from "./db.ts";
import { todoQuery } from "./todos.ts";

const TodoList = () => {
  const { rows } = useLive(db, todoQuery);
  return <ul>{rows?.map((row) => <li key={row.id}>{row.title}</li>)}</ul>;
};

Nothing refetches after a write and nothing invalidates a cache; the list updates itself, in every open tab.

Docs

Full documentation lives at ramose.ai. Start with Getting started — a working todo app from an empty folder, no Cloudflare account required.

License

Apache-2.0 — see LICENSE and NOTICE.