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

@datasette/client

v0.0.1-a8

Published

TypeScript fetch() client for the Datasette 1.0 JSON API. Works in browsers, Node ≥18, Deno and Bun.

Downloads

418

Readme

@datasette/client

A small TypeScript fetch() wrapper for the Datasette 1.0 JSON API. No deps, pure ESM, should world in browser/node/deno/bun etc.

[!WARNING] Alpha — expect breaking changes.

npm install @datasette/client
import { DatasetteClient } from "@datasette/client";
const client = new DatasetteClient({
  baseUrl: "https://example.com/", // default "/" (same-origin, browser)
  token: "dstok_...",              // optional, sent as Authorization: Bearer
});


const db = client.db("my-database");

// read queries
const pattern = 'abc*';
const rows = await db.sql`select * from kv where key like ${pattern}`;
const rows2 = db.query("select * from kv where key like :pattern", {pattern: "abc*"});

// per-query options for the tagged template (allowTruncated, timelimit, signal)
const all = await db.sql.options({ allowTruncated: true })`select * from kv`;

const key = 'sample';
const row = db.queryRow("select value from kv where key = :key", {key});
const value = db.queryValue("select value from kv where key = :key", {key});

// same, different API
const dogs = client.db("content").table("dogs");
await dogs.rows({ where: { age__gt: 4, name__contains: "o" }, sort: "-age" });

// Write API
await dogs.insert([{ name: "Cleo" }, { name: "Pancakes" }]);
await dogs.upsert({ id: 1, age: 6 });
await client.execute(`delete from logs where ts < :cutoff`, { cutoff });

API overview

See API.md for the full API surface, result types, filters, streaming and wire-protocol details.

Development

npm test               # unit tests (mocked fetch)
npm run test:integration   # spins up a real Datasette 1.0a via uvx
npm run build          # tsc (dist/*.js + .d.ts) + esbuild single-file bundle
npm run docs           # TypeDoc API reference into docs/ (git-ignored)

npm run build emits both the module build (dist/index.js, used by the package exports) and dist/datasette-client.min.js — a dependency-free single-file ESM bundle (~12 KB, with sourcemap) for <script type="module"> or CDN use, also reachable as the @datasette/client/bundle export.

Deeper documentation lives in wiki/: the architecture, the wire-protocol facts the client is built on, a design decision log with the alternatives considered, testing notes and the future-work roadmap.