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

concile

v0.1.5

Published

The reactive backend you self-host — one package: server functions, typed client, React hooks, and the concile CLI.

Readme

concile

The open-source, self-hostable reactive backend.

Write TypeScript functions. Get a transactional database, live-updating queries, file storage, scheduling, durable workflows, and auth — on your own infrastructure, from a single package.

bun add concile        # or: npm install concile

How it works

Queries are live subscriptions. Mutations are serializable transactions. When a mutation commits, every subscribed client whose query read the affected data is pushed a fresh result over WebSocket — no polling, no cache invalidation to manage.

// concile/schema.ts
import { defineSchema, defineTable, v } from "concile/values";

export default defineSchema({
  messages: defineTable({
    channel: v.string(),
    body: v.string(),
  }).index("by_channel", ["channel"]),
});
// concile/messages.ts
import { query, mutation } from "./_generated/server";
import { v } from "concile/values";

export const list = query({
  args: { channel: v.string() },
  handler: (ctx, { channel }) =>
    ctx.db.query("messages", "by_channel").eq("channel", channel).collect(),
});

export const send = mutation({
  args: { channel: v.string(), body: v.string() },
  handler: async (ctx, args) => {
    await ctx.db.insert("messages", args);
  },
});
// React — updates in real time when anyone sends
import { useQuery, useMutation } from "concile/react";
import { api } from "../concile/_generated/api";

const messages = useQuery(api.messages.list, { channel: "general" });
const send = useMutation(api.messages.send);

Run it:

npx concile dev   # engine + typed codegen + dashboard + hot reload, SQLite, zero config

What's in the package

| Import | Contents | | --- | --- | | concile | Client SDK (ConcileClient, auth client, offline outbox) | | concile/react | useQuery, useMutation, optimistic updates | | concile/server | query, mutation, action, httpAction, httpRouter (re-exported, fully typed, via your app's _generated/server) | | concile/values | v validators, defineSchema, defineTable | | concile/config | defineConfig — compose optional components | | concile (CLI) | dev, serve, deploy, build, migrate |

Optional components

Installed separately, activated in concile.config.ts:

Deploy anywhere

  • concile serve — production server on SQLite or Postgres (--database-url)
  • docker compose up — single-container self-host
  • concile build — compile your app into one self-contained executable
  • concile deploy --target cloudflare|docker|railway|fly|aws — managed targets
  • Offline-capable clients: optimistic updates plus a durable outbox with exactly-once replay

Learn more

  • Documentation: https://concile-six.vercel.app/docs
  • Source: https://github.com/concile-dev/concile
  • Examples: chat, auth, offline

License: FSL-1.1-Apache-2.0 — free to use and self-host; each release converts to Apache 2.0 after two years.