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

@jithvar/gridx

v0.1.0

Published

GridX - The Modern Data Grid by Jithvar Consultancy Services. High-performance, Excel-like data grid with virtual scrolling, editing, filtering, and more.

Downloads

49

Readme


Packages

GridX is distributed as three packages:

| Package | Description | Install | |---------|-------------|---------| | @jithvar/gridx-core | Framework-agnostic grid engine (zero deps) | npm i @jithvar/gridx-core | | @jithvar/gridx-react | React & Next.js wrapper component | npm i @jithvar/gridx-react | | @jithvar/gridx-themes | CSS themes (light, dark, alpine) | npm i @jithvar/gridx-themes |


Quick Install (React / Next.js)

npm install @jithvar/gridx-react @jithvar/gridx-themes

Features

  • Virtual Scrolling — 100K+ rows at 60fps
  • Excel-like Navigation — Arrow keys, Tab, Enter, Shift+Arrow range select
  • Inline Cell Editing — Double-click to edit, with validation
  • Copy & Paste — Ctrl+C/V, multi-cell, Excel-compatible
  • Undo / Redo — Ctrl+Z / Ctrl+Y
  • Sorting — Multi-column, click headers
  • Filtering — Excel-style set filters (checkbox lists)
  • Column Pinning — Freeze columns left/right
  • Column Reorder — Drag headers
  • Column Chooser — Show/hide columns
  • Row Selection — Row numbers, Ctrl+click, Shift+click
  • Status Bar — Sum, Avg, Count
  • Context Menu — Right-click actions
  • Conditional StylingcellStyle / cellClass
  • Excel Export — .xlsx, zero dependencies
  • Pagination — Client-side + server-side
  • URL Filters — Shareable filtered views
  • State Persistence — Save/restore from DB (cross-device)
  • Themes — Light, Dark, Alpine

Usage

import { JGrid, ColDef } from '@jithvar/gridx-react';
import '@jithvar/gridx-themes/gridx.css';
import '@jithvar/gridx-themes/light.css';

const columns: ColDef[] = [
  { field: 'name', header: 'Name', editable: true },
  { field: 'salary', header: 'Salary', type: 'number' },
];

function App() {
  return (
    <div style={{ height: 600 }}>
      <JGrid columns={columns} data={data} editable rowSelection statusBar />
    </div>
  );
}

Why GridX?

| | GridX | AG Grid | TanStack Table | |-|-------|---------|----------------| | Bundle (gzip) | ~10KB | ~500KB | ~15KB (no UI) | | Zero dependencies | Yes | No | Yes | | Built-in UI | Yes | Yes | No | | Excel editing | Yes | Enterprise $ | No | | Undo/Redo | Yes | Enterprise $ | No | | .xlsx Export | Yes | Enterprise $ | No | | License | MIT (free) | Partial | MIT |


Documentation

Full docs, API reference, and examples: gitlab.com/jcs-plugins/gridx


About

GridX is built and maintained by Jithvar Consultancy Services — a software consultancy delivering enterprise-grade solutions.

License

MIT