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

3dcsv

v0.3.0

Published

Pipe-separated comma-separated values — infinitely dimensional data in a 2D CSV.

Readme

3D CSV

Pipe-separated comma-separated values — represent complex, multi-valued data in a single 2D CSV. One table, one header row, list-valued cells via a dimension delimiter (default |).

Yes, it’s still a 2D grid. The “3D” is aspirational.

Install

bun add 3dcsv
# or
npm install 3dcsv

For typed rows with runtime validation (recommended):

bun add 3dcsv zod

Usage

Parse and stringify

import { parse, stringify } from "3dcsv";

const csv = `name,age,tags
Alice,30,"js|ts|rust"
Bob,25,"hiking|photography"`;

const { headers, rows } = parse(csv);
// headers: ['name', 'age', 'tags']
// rows: [
//   { name: 'Alice', age: '30', tags: ['js', 'ts', 'rust'] },
//   { name: 'Bob', age: '25', tags: ['hiking', 'photography'] }
// ]

const back = stringify({ headers, rows });
// roundtrip: back === csv

Typed rows (Zod, recommended)

Pass a Zod schema; return type is inferred. No type assertions.

import { parse } from "3dcsv";
import { z } from "zod";

const personSchema = z.object({
  name: z.string(),
  age: z.coerce.number(),
  tags: z.array(z.string()),
});

const result = parse(csv, { schema: personSchema });
// result.rows is { name: string; age: number; tags: string[] }[]

// Optional runtime validation
const validated = parse(csv, { schema: personSchema, validate: true });

Typed rows (generic, no Zod)

type Person = { name: string; age: number; tags: string[] };
const result = parse<Person>(csv);
// result.rows is Person[]

Convenience views

const result = parse(csv);

result.rows; // default: array of row objects
result.toRows(); // always: Cell[][] (array of arrays)
result.toObjects(); // always: Record<string, Cell>[]

Flatten back to regular CSV

Come back down to earth and expand list-valued cells into one row per element (join-table style). Then stringify to get plain CSV with no pipes.

const csv = `name,tags
Alice,"js|ts|rust"`;
const flat = parse(csv).flatten();
// flat.rows: [{ name: "Alice", tags: "js" }, { name: "Alice", tags: "ts" }, ...]
const regularCsv = stringify(flat); // no pipes

Optional: parse(csv).flatten({ columns: ["tags"] }) to expand only specific columns.

Visualize (CLI)

Run a local server and open a React table view in the browser:

bunx 3dcsv visualize
# or with a file (relative to cwd):
bunx 3dcsv visualize example.csv

Opens http://localhost:3847 (or PORT env). List-valued cells render as badges. The UI is built with React and bundled with Bun; run bun run dev:ui to watch for changes and bun run dev:server to run the server.

No schema, no generic

If you do nothing, you get { headers: string[]; rows: unknown[] }. Typed rows are opt-in via schema or generic.

API

  • parse(input, options?) — Parse 3D CSV. Options: dimensionDelimiters, header, columns, asObjects, schema, validate.
  • parse(csv).flatten(options?) — Expand array cells into one row per element (Cartesian product when multiple columns); returns Parsed3DCSV with all scalar rows. Options: columns?: string[].
  • stringify(data, options?) — Stringify to 3D CSV. Accepts { headers, rows } or array of row objects (headers inferred).
  • bunx 3dcsv visualize [file.csv] — Start a local server and open a table UI; optional file path (relative to cwd).

It’s just CSV with pipes in the cells. Sometimes that’s all you need. Sometimes.

Format

  • Rows and columns as usual; cells can contain a dimension delimiter (default |).
  • A cell like "a|b|c" is one cell whose value is the list ["a", "b", "c"].
  • Quoting and escaping follow standard CSV (e.g. "" inside quoted fields).

Contributing

Changesets for versioning: run bun run changeset when you change the package. Merge the “Version Packages” PR to publish. See .changeset/README.md.

License

MIT


3D CSV: because one dimension was never enough. We’re not saying it’s a good idea — we’re just saying it works.