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

v1.0.11

Published

Ace Grid Enterprise: paid React grid runtime with charts, pivot, master-detail, and server row model features.

Downloads

407

Readme

@ace-grid/enterprise

Ace Grid Enterprise is the commercial React runtime for enterprise-scale data applications. It builds on Ace Grid Pro and adds integrated charts, pivoting, master-detail workflows, and server row model features.

Use Enterprise when your app needs advanced analytics, server-side data orchestration, governed workflows, or priority support.

Install

npm install @ace-grid/enterprise 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/enterprise";

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

export function OperationsGrid() {
  return (
    <Grid
      data={{ rows, columns }}
      layout={{ height: 640 }}
      columns={{}}
      charts={{ enabled: true }}
      pivot={{ enabled: true }}
      serverRowModel={{ enabled: true }}
      license={license}
    />
  );
}

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

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

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

export function OperationsGrid() {
  return (
    <Grid
      data={{ rows, columns }}
      layout={{ height: 640 }}
      columns={{}}
      charts={{ enabled: true }}
      pivot={{ enabled: true }}
      serverRowModel={{ enabled: true }}
    />
  );
}

Capabilities

  • Integrated chart panel and chart model helpers
  • Pivot and server-side pivot request builders
  • Server row model normalization and request helpers
  • Master-detail and hierarchical data workflows
  • All Ace Grid Pro capabilities

License validation

Enterprise 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 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/pro for formulas, validation, Excel workflows, grouping, and sparklines.
  • @ace-grid/schema-ai for AI-ready schema workflows with Pro or Enterprise.

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

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

License

Ace Grid Enterprise 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.