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

@fluree/client

v0.1.0

Published

Typed browser/Node client for Fluree Solo — query, transact, and Space app tokens with ledger-enforced policy

Readme

@fluree/client

Typed browser/Node client for a Fluree Solo stack. Query, transact, and mint Space app tokens — with policy enforced at the ledger, below the API. The client carries no policy logic and no privileged credential.

The model in 20 seconds

  • A Space is the sandbox: its datasets, agents, grants, and policy classes define everything an app can ever touch.
  • A Space app token is a scoped, non-privileged, short-lived credential into that Space. It identifies as the end user, is narrowed to (user ∩ Space), and only carries datasets with explicit policy classes — a dataset without them is excluded at mint and denied at enforcement (fail closed). Even an admin using your app is narrowed.
  • API keys are intentionally unsupported. On a Fluree stack an API key is the privileged path that bypasses ledger policy; it must never ship in an app.

Usage

import { createSpaceAppClient } from "@fluree/client";

const app = createSpaceAppClient({
  endpoint: "https://your-stack.example.com",
  spaceId: "space-abc",
  // The user's own credential — used ONLY to mint/refresh the app token.
  userAuth: { tokenProvider: () => session.getToken() },
});

// Data calls ride the scoped app token, auto-refreshed before expiry.
const leads = await app.query("leads", {
  "@context": { ex: "https://example.org/" },
  select: { "?lead": ["*"] },
  where: [{ "@id": "?lead", "@type": "ex:Lead" }],
});

await app.insert("leads", {
  "@context": { ex: "https://example.org/" },
  "@type": "ex:Lead",
  "ex:email": "[email protected]",
  "ex:campaign": "trailhead",
});

// What can this app actually reach? (renders a capability panel)
console.log(app.capabilities()?.datasets);
console.log(app.capabilities()?.excludedDatasets); // and *why* they're out

For scripts/tools with a token in hand, createFlureeClient({ endpoint, auth: { bearer } }) gives the same surface without the Space binding.

Error handling

Every non-2xx response throws FlureeError with status and the raw body. error.isPolicyDenial (403) is the ledger's policy saying no — that's the governance working, not a bug in your app.

Install

npm i @fluree/client

The only runtime dependency is zod. The package ships ESM + CJS with bundled type declarations, and is self-contained — the contract schema types it uses are inlined at build time.

Development

Inside the monorepo the package is consumed from source (exportssrc/index.ts); the published artifact is built separately. bun run build emits the self-contained dist/ bundle via tsup; bun run prepare-publish assembles the publish-ready staging directory under publish/.