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/pro

v1.0.11

Published

Ace Grid Pro: paid React grid runtime with formulas, validation, Excel I/O, row grouping, tree data, sparklines, spanning, and advanced filtering.

Readme

@ace-grid/pro

Ace Grid Pro is the commercial React runtime for spreadsheet-grade grid workflows. It extends Ace Grid Core with formulas, validation, Excel I/O, row grouping, tree data, sparklines, spanning, and advanced filtering.

Use Pro when your app needs spreadsheet workflow features but does not need Enterprise-only capabilities such as server row model, pivoting, integrated charts, or master-detail.

Install

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

Create an application and license key in the Ace Grid portal before rendering paid features.

  • Documentation: https://ace-grid.com/docs
  • API reference and generated API spec: https://ace-grid.com/api
  • Account and license keys: https://ace-grid.com/account
  • Public Core source: https://github.com/Vitashev/ace-grid-core

Quick start

The most explicit option is to pass the license directly to the grid. Use this when different apps, tenants, or test fixtures may use different keys.

import { Grid } from "@ace-grid/pro";

const license = {
  appId: import.meta.env.VITE_ACE_GRID_APP_ID,
  licenseKey: import.meta.env.VITE_ACE_GRID_LICENSE_KEY,
};

export function FinanceGrid() {
  return (
    <Grid
      data={{ rows, columns }}
      layout={{ height: 560 }}
      columns={{}}
      formula={{ enabled: true }}
      validation={{ enabled: true }}
      license={license}
    />
  );
}

If the whole application uses one key, configure it once at startup:

import { Grid, configureAceGridLicense } from "@ace-grid/pro";

configureAceGridLicense({
  appId: import.meta.env.VITE_ACE_GRID_APP_ID,
  licenseKey: import.meta.env.VITE_ACE_GRID_LICENSE_KEY,
});

export function FinanceGrid() {
  return (
    <Grid
      data={{ rows, columns }}
      layout={{ height: 560 }}
      columns={{}}
      formula={{ enabled: true }}
      validation={{ enabled: true }}
    />
  );
}

Capabilities

  • Formula bar and formula engine integration
  • Validation rules and validation state workflows
  • Excel import/export workflows
  • Row grouping and tree data helpers
  • Sparklines, cell spanning, and advanced filtering
  • All free Ace Grid Core capabilities

License validation

Pro features require a valid Ace Grid commercial license. At runtime, the package requests a signed short-lived lease from the Ace Grid license API and validates that the key is active, belongs to the configured application, has seats, and is entitled to Pro or Enterprise features.

The default license API is https://api.ace-grid.com. You can override it for development or private environments:

configureAceGridLicense({
  appId: "app_...",
  licenseKey: "ag_...",
  apiBaseUrl: "https://api.ace-grid.com",
});

Related packages

  • @ace-grid/core for the free Ace Grid runtime.
  • @ace-grid/enterprise for server row model, pivoting, charts, and master-detail.
  • @ace-grid/schema-ai for AI-ready schema workflows with Pro or Enterprise.

Framework wrappers work with Pro through tier-specific entry points:

  • @ace-grid/wc
  • @ace-grid/angular/pro
  • @ace-grid/vue/pro
  • @ace-grid/svelte/pro

License

Ace Grid Pro is proprietary commercial software. Use requires a valid Ace Grid commercial license. See LICENSE for terms.

Support

Use the Ace Grid portal support flow at https://ace-grid.com/contact.