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

@enterprisegrid/grid

v1.0.0

Published

High-performance, feature-rich React data grid with live playground capability.

Readme

@enterprisegrid/grid

A high-performance, responsive, and completely feature-rich React Data Grid component. It comes with out-of-the-box support for AI-insights querying, visual sparklines, high-contrast heatmaps, dynamic calendar layout, geospatial map routing, local history time-travel, customizable multi-view boards, and responsive swiping.

Features

  • High-Performance: Handles thousands of rows smoothly with fast state managers.
  • 🎨 Visual Heatmaps & Sparklines: Micro-visualize trends inside cell margins with zero boilerplate.
  • 📅 Interactive Calendar View: Toggle from grid list layout straight to responsive visual calendars.
  • 🗺️ Geospatial Map View: Plot locations automatically on nested maps using robust geolocation pins.
  • 🕒 Undo/Redo & Time Travel: Built-in historic activity recording for complete state restoration.
  • 📋 Integrated AI Sandbox: Playgrounds configured with code-editor compilation to test custom configurations interactively.

Installation

Install @enterprisegrid/grid along with its required peer dependencies:

npm install @enterprisegrid/grid react react-dom motion lucide-react leaflet react-leaflet react-big-calendar date-fns

Make sure to import the CSS styles in your main entry file (e.g., main.tsx or App.tsx):

import '@enterprisegrid/grid/dist/enterprisegrid.css';

Basic Usage

Here is a quick setup guide to mount the grid component in your React application:

import React from 'react';
import { DataTable } from '@enterprisegrid/grid';
import '@enterprisegrid/grid/dist/enterprisegrid.css';

const columns = [
  {
    id: 'name',
    name: 'Product Name',
    selector: (row) => row.name,
    sortable: true,
  },
  {
    id: 'price',
    name: 'Price ($)',
    selector: (row) => row.price,
    sortable: true,
    right: true,
  }
];

const data = [
  { id: 1, name: 'Premium Coffee Beans', price: 18.50 },
  { id: 2, name: 'Espresso Maker Pro', price: 299.99 },
];

export default function MyDashboard() {
  return (
    <div style={{ padding: '2rem' }}>
      <DataTable
        title="Inventory Manager"
        columns={columns}
        data={data}
        pagination
        searchable
      />
    </div>
  );
}

Technical Specifications

Package Exports

  • ESM: dist/enterprisegrid.esm.js
  • UMD/CJS: dist/enterprisegrid.js
  • Styles: dist/enterprisegrid.css
  • Typings: Fully typed out-of-the-box (dist/index.d.ts)

Configuration Props

| Prop Name | Type | Description | | :--- | :--- | :--- | | title | string | The header title for the grid container. | | columns | TableColumn<T>[] | Column structure config (width, alignment, sparklines, heatmap, formats). | | data | T[] | Data records array. | | pagination | boolean | Enable or disable pagination helper controls. | | searchable | boolean | Enable global column filtering. |


Maintaining Versioning & Releases

A standardized workflow is set up to automate semantic version bumps and prepare changelogs for publication.

How to Release a New Version

From the packages/enterprisegrid directory, you can run the interactive release script:

# Bump version by a patch (e.g., 1.0.0 -> 1.0.1)
npm run release patch

# Bump version by a minor feature set (e.g., 1.0.0 -> 1.1.0)
npm run release minor

# Bump version by a major breaking change (e.g., 1.0.0 -> 2.0.0)
npm run release major

# Specify a custom exact version
npm run release 1.0.5-beta.0

What the Release Script Does Automatically

  1. Calculates & Validates the targeted semver value.
  2. Updates package.json with the newly bumped version.
  3. Prepend placeholders in CHANGELOG.md under a fresh timestamped section.
  4. Triggers a bundle compile verification to ensure your codebase builds flawlessly before staging a release.

Once the verification build completes, open CHANGELOG.md, update the bulleted lists with your latest features or fixes, and run npm publish to publish to your registry.


License

Released under the MIT License.