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

@ace-grid/core

v1.0.19

Published

Fast, MIT-licensed React data grid for editable, virtualized product workflows with sorting, filtering, pagination, theming, selection, and CSV I/O.

Readme

@ace-grid/core

npm version license: MIT React 18 and 19

Fast, MIT-licensed React data grid for editable, virtualized product workflows. Ace Grid Core includes editing, selection, sorting, filtering, pagination, search, pinning, resizing, virtualization, CSV I/O, theming, and schema-aware grid state helpers.

Use Core when you need the free Ace Grid feature set without Pro or Enterprise capabilities.

Try the live grid · Open the React starter · Read the documentation · Run the reproducible benchmark

Ace Grid Core interactive React demo

The actual Core starter: Liquid Glass themes, search, selection, editing, filtering, pinning, pagination, virtualization, and all 20 MIT capabilities.

Open in StackBlitz

Why Ace Grid Core

  • MIT-licensed production runtime, not a limited evaluation build.
  • Spreadsheet-style editing, keyboard interaction, selection, and clipboard workflows.
  • Row, column, and cell-content virtualization for large grid surfaces.
  • Typed React API with ESM, CommonJS, and TypeScript declarations.
  • Migration utilities for AG Grid and MUI Data Grid projects.

Install

npm install @ace-grid/core react react-dom

Quick start

Want to experiment first? Launch the dedicated Vite + React + TypeScript starter in StackBlitz—no local setup required.

import { Grid, createGridRowsFromRecords } from "@ace-grid/core";

const rows = createGridRowsFromRecords([
  { id: "1", company: "HelioBank", segment: "Enterprise" },
  { id: "2", company: "Northstar AI", segment: "Strategic" },
]);

const columns = [
  { key: "company", title: "Company", editable: true },
  { key: "segment", title: "Segment", filterable: true },
];

export function CustomersGrid() {
  return (
    <Grid
      data={{ rows, columns }}
      columns={{ columnWidths: { company: 260, segment: 180 }, fillWidth: true }}
      layout={{ width: 800, height: 520 }}
    />
  );
}

Compatibility

| Runtime | Supported versions | | --- | --- | | React | 18.2 and 19.x | | React DOM | 18.2 and 19.x | | TypeScript | Declarations included | | Browsers | Current evergreen browsers |

The release checks install the packed Core package in clean React 18 and React 19 consumer projects. If your application finds a compatibility gap, please open an issue.

Performance evidence

The public React data grid benchmark publishes its fixture, runner, methodology, and raw browser samples. Treat the results as a reproducible starting point and rerun the workload that matches your own columns, renderers, data volume, and target hardware.

Choose a tier

| Tier | Best for | Included capabilities | | --- | --- | --- | | Core | Product tables and editable operational grids | Editing, selection, sorting, filtering, pagination, virtualization, theming, and CSV I/O | | Pro | Spreadsheet-style workflows | Core plus formulas, validation, Excel I/O, grouping, tree data, sparklines, and spanning | | Enterprise | Server-backed and analytical applications | Pro plus server row model, pivoting, charts, and master-detail workflows |

Start with Core and move to another tier only when the application requires those workflow capabilities. See pricing for licensing details.

Framework support

Ace Grid Core is the React runtime. Use these wrapper packages when your app is not React-first:

  • @ace-grid/wc for Web Components
  • @ace-grid/angular for Angular
  • @ace-grid/vue for Vue 3
  • @ace-grid/svelte for Svelte

Framework guides:

  • React: https://ace-grid.com/guides/react-data-grid-library
  • Angular: https://ace-grid.com/guides/angular-data-grid
  • Vue: https://ace-grid.com/guides/vue-data-grid
  • Svelte: https://ace-grid.com/guides/svelte-data-grid
  • Web Components: https://ace-grid.com/guides/web-component-data-grid

Related packages

  • @ace-grid/pro adds formulas, validation, Excel workflows, grouping, tree data, sparklines, and spreadsheet-style workflows.
  • @ace-grid/enterprise adds server row model, pivoting, charts, master-detail, and enterprise workflows.
  • @ace-grid/schema-core provides serializable grid schemas and validation.
  • @ace-grid/compat-ag and @ace-grid/compat-mui help migrate existing AG Grid and MUI Data Grid usage.

Documentation

  • Docs: https://ace-grid.com/docs
  • API reference: https://ace-grid.com/api
  • Live demo: https://ace-grid.com/#live-demo
  • StackBlitz React starter: https://stackblitz.com/github/Vitashev/ace-grid-core/tree/main/examples/react-basic?file=src%2FApp.tsx
  • React grid benchmark: https://ace-grid.com/guides/react-data-grid-benchmark
  • Migration guide: https://ace-grid.com/docs/migration
  • AG Grid alternative: https://ace-grid.com/guides/ag-grid-alternative
  • MUI Data Grid alternative: https://ace-grid.com/guides/mui-data-grid-alternative
  • Public Core source: https://github.com/Vitashev/ace-grid-core

License

MIT. See LICENSE.