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

@zentto/datagrid

v1.2.8

Published

High-performance data grid web component. 90+ features, 0 framework dependencies. Free & open-source alternative to AG Grid Enterprise and MUI X Premium.

Downloads

759

Readme

@zentto/datagrid

The free, open-source data grid with enterprise features. 90+ features. Zero framework lock-in. One web component.

Install

npm install @zentto/datagrid @zentto/datagrid-core

Quick Start

<zentto-grid
  show-totals
  enable-toolbar
  enable-header-filters
  enable-clipboard
  enable-configurator
  height="500px"
></zentto-grid>

<script type="module">
  import '@zentto/datagrid';

  const grid = document.querySelector('zentto-grid');
  grid.columns = [
    { field: 'name', header: 'Name', sortable: true },
    { field: 'price', header: 'Price', type: 'number', currency: 'USD', aggregation: 'sum' },
    { field: 'status', header: 'Status', statusColors: { Active: 'success', Inactive: 'error' } },
  ];
  grid.rows = [
    { id: 1, name: 'Widget', price: 29.99, status: 'Active' },
    { id: 2, name: 'Gadget', price: 49.99, status: 'Inactive' },
  ];
</script>

Features

| Category | Features | |----------|----------| | Data | Multi-sort, 14+ filter operators, quick search, pagination (client/server) | | Grouping | Row grouping with subtotals, drag-to-group drop zone | | Pivot | Dynamic pivot tables with configurable rows, columns, values, aggregation | | Columns | Pinning (left/right), resize, reorder, hide/show, column groups | | Templates | Status chips, avatars, progress bars, ratings, flags, links, images | | Selection | Checkbox multi-select, Shift+Click ranges, Excel-like cell navigation | | Editing | Inline editing, Excel-like keyboard (Enter, Tab, F2, arrows), date picker | | Master-Detail | Expandable rows with nested grid or custom HTML, mobile bottom sheet | | Export | CSV, Excel, JSON (inline buttons in toolbar) | | Import | Excel (.xlsx), CSV, JSON file import | | Find | Ctrl+F search with match highlighting | | Theming | Light/Dark/Zentto themes, 40+ CSS custom properties | | i18n | Spanish, English (built-in), extensible | | Configurator | Built-in settings panel (Features, Pivot, Groups, Theme, Code generator) | | Code Gen | Generates copyable code for React, HTML, and Vue |

Theming

Override any visual aspect with CSS custom properties:

zentto-grid {
  --zg-primary: #8b5cf6;
  --zg-header-bg: #faf5ff;
  --zg-row-hover: rgba(139, 92, 246, 0.06);
  --zg-font-family: "Poppins", sans-serif;
  --zg-radius-lg: 16px;
}

Works Everywhere

  • React / Next.jsimport '@zentto/datagrid' + <zentto-grid ref={ref} />
  • Vue 3import '@zentto/datagrid' + <zentto-grid ref="grid" />
  • Angularimport '@zentto/datagrid' + <zentto-grid #grid />
  • Svelteimport '@zentto/datagrid' + <zentto-grid bind:this={grid} />
  • Plain HTML<script type="module" src="@zentto/datagrid"></script>

Bundle Size

~38 KB gzipped (including Lit). Compare: MUI X ~200 KB, AG Grid ~300 KB.

License

MIT - Free for commercial and personal use.

Links