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

@data-elements/studio

v0.3.1

Published

Local-first Nitro server for the Tessera database analysis workspace on Node.js and Bun.

Readme

Tessera Studio

Tessera Studio is the local web workspace for exploring and analyzing a PostgreSQL, MySQL, SQLite, or Turso database. It is normally started through the tessera command shipped by the data-elements package:

npx data-elements@latest studio postgresql://readonly:[email protected]:5432/warehouse

What Studio does

  • Chat with a database assistant using regular Markdown responses.
  • Inspect the available catalog and run governed, read-only analysis.
  • Show compact execution progress and query evidence alongside the response.
  • Accept image attachments in a chat message, including pasted images.
  • Keep local chat sessions in the Studio SQLite store.

Studio deliberately does not generate or render structured result cards. A completed analysis is presented as Markdown plus its execution progress and evidence, which keeps the conversation layout stable for long answers and database results.

The Studio server and its local session store run on Node.js 24 or later and Bun 1.3 or later. A project can keep the connection string and model-provider settings in a server-only tessera.config.ts file and then run npx data-elements@latest studio from that project directory.

SQLite accepts an existing local database through file: or sqlite:. Turso accepts libsql: or turso: and reads its separate server-only credential from database.authToken or TURSO_AUTH_TOKEN. SQLite and Turso connections are always read-only in Studio.

npx data-elements@latest studio file:/absolute/path/to/warehouse.db
TURSO_AUTH_TOKEN=... npx data-elements@latest studio libsql://warehouse-org.turso.io

Local development

From this directory:

bun install
bun run dev

Nitro serves both the API and Vite client at http://127.0.0.1:4317. Run bun test src for the Studio test suite or bun run build to create the CLI, library, and deployable Nitro server.

The Nitro production output is written to dist/nitro. Start it with Node.js 24 or Bun:

node dist/nitro/server/index.mjs

The standalone tessera studio CLI remains available and uses the same H3 application and Studio runtime as the Nitro deployment.

The package exports the server factory and the ./main command entry for integrations that embed Tessera Studio.