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

@material-table/core

v8.0.3

Published

Datatable for React based on https://material-ui.com/api/table/ with additional features

Readme

@material-table/core

A highly customizable datatable for React, built on Material UI — forked from mbrn/material-table

build publish npm version npm downloads license discord

💾 Installation • 🎉 Basic Usage • 📖 Documentation • ⚙️ Demos
Why this repo exists? • 🗺️ Roadmap


✨ Features

  • Sorting & multi-column sorting — client- or server-side
  • Filtering & search — per-column filters (text, numeric, boolean, date, lookup) plus global search
  • Pagination — normal or stepped, fully localizable
  • Inline editing — row, cell and bulk editing with validation
  • Grouping — drag & drop column grouping with persistent groupings
  • Selection — row selection with parent/child (tree) support
  • Tree data & detail panels — nested rows and expandable panels
  • Column resizing, reordering and hiding
  • Remote data — plug in any backend via a simple query callback
  • Export — pluggable export menu (CSV, PDF, custom)
  • Styling & theming — Material UI theme aware, custom components for every part of the table
  • Localization — every label and aria attribute is overridable

📦 Requirements

| Peer dependency | Version | | --------------- | ------- | | react / react-dom | >= 19 | | @mui/material | v9 |

Built with modern tooling: Vite 8 library build (tree-shakeable, per-module ESM output), Vitest 4 test suite, ESLint 9 flat config. The package ships as ESM; CommonJS consumers are covered by Node's require(esm) support (Node >= 20.19).

🛠️ Installation

npm install @material-table/core
# or
yarn add @material-table/core

Refer to the installation guide for more information and advanced usage.

💡 Basic Usage

import MaterialTable from '@material-table/core';

function MyTable() {
  return (
    <MaterialTable
      title="Simple Table"
      columns={[
        { title: 'Name', field: 'name' },
        { title: 'Age', field: 'age', type: 'numeric' }
      ]}
      data={[
        { name: 'John', age: 30 },
        { name: 'Jane', age: 25 }
      ]}
      options={{
        sorting: true,
        filtering: true
      }}
    />
  );
}

Explore more features and advanced usage in the documentation and live demos.

🧑‍💻 Development

npm install
npm start          # Vite dev server with the demo playground
npm test           # build + run the Vitest suite
npm run lint       # ESLint + type-check of the TypeScript definitions
npm run build      # build the library to dist/

🙌 Sponsorship

We appreciate contributions and sponsorships! You can support this project through GitHub Sponsors or Open Collective. Your support helps us maintain and improve the project.

🚀 Contributing

Thank you for considering contributing to the project! Areas where help is especially welcome:

  • Refactoring — migrate the remaining class components to hooks
  • Documentation — help us improve the docs
  • Tests — extend the Vitest suite to improve stability

We appreciate all contributions, big or small. Check out the contributing guide for more details.

📄 License

MIT