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

@datasketch/monkeytab

v0.6.0

Published

Embeddable, editable React table component

Downloads

736

Readme

MonkeyTab

npm version License: MIT CI

An embeddable, editable React table for your data.

npm install @datasketch/monkeytab
import { MonkeyTable } from '@datasketch/monkeytab';

function App() {
  return (
    <MonkeyTable
      columns={[
        { id: 'Name' },
        { id: 'Score', type: 'Number', options: { precision: 1 } },
        { id: 'Status', type: 'SingleSelect', options: {
          options: [
            { value: 'active', label: 'Active', color: '#22c55e' },
            { value: 'done', label: 'Done', color: '#3b82f6' },
          ],
        }},
        { id: 'Due', type: 'Date' },
        { id: 'Approved', type: 'Boolean' },
      ]}
      rows={[
        { Name: 'Alpha', Score: 9.5, Status: 'active', Due: '2026-03-15', Approved: true },
        { Name: 'Beta', Score: 7.2, Status: 'done', Due: '2026-04-01', Approved: false },
      ]}
      onChange={(rows) => console.log('Updated:', rows)}
      height="auto"
    />
  );
}

React 18 or 19 is required as a peer dependency.


Why MonkeyTab

Most React table libraries are headless primitives — you assemble the UI yourself. MonkeyTab is the opposite: a single component you drop into your app, with batteries included.

  • Spreadsheet-like editing — click to select, double-click to edit, Tab/arrows to navigate, Cmd+C/V to copy/paste
  • Type-aware columns — Text, Number, Boolean, Date, SingleSelect, MultiSelect, Email, URL, Phone, Image, Attachment, Rating, Color, Computed
  • Sort, filter, search out of the box — no setup required
  • Pagination & ghost grid — handle large datasets with simple or load-more pagination
  • Range selection — Shift+Arrow to select cells, Cmd+C copies as TSV (paste into Excel/Sheets)
  • i18n — English and Spanish bundled, full string overrides via translations prop
  • Extensible — register custom field types, computed functions, validators, and cell renderers

Features

| Feature | Notes | |---|---| | Cell editing | All field types have inline editors | | Sort | Click headers to toggle, type-aware labels | | Filter | Filter builder with per-type operators | | Search | Full-text across all visible columns | | Pagination | Simple (Previous/Next) or load-more (infinite scroll) | | Virtualization | Built on TanStack Table — handles 100k+ rows smoothly | | Range selection | Shift+Arrow for rectangular selection, copy as TSV | | Multi-cell paste | Paste TSV from clipboard, fills from active cell | | Per-column options | editable, width, sortable, align per column | | Read-only mode | editable={false} for view-only tables | | Custom renderers | Register your own cell renderer for any field type | | Custom functions | Add your own computed field functions |

Documentation

Examples

A minimal example app lives in examples/browser-standalone/. To run it:

git clone https://github.com/datasketch/monkeytab.git
cd monkeytab/examples/browser-standalone
npm install
npm run dev

License

MIT