# tabulator-tables

> Interactive table generation JavaScript library

Latest version **6.5.3** (published 2026-09-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install tabulator-tables
pnpm add tabulator-tables
yarn add tabulator-tables
bun add tabulator-tables
```

## Health

**Score 73/100 (B)** — status: active.

Positive: has types package; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score; high quality score.

Warnings: low downloads; large bundle.

## Facts

| | |
|---|---|
| Version | 6.5.3 |
| Published | 2026-09-15 |
| First published | 2018-09-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/tabulator-tables) |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 28.2 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 7770 |
| Author | Oli Folkerd |
| Maintainers | rathbomabks, notnightbut, azmi_bks |
| Keywords | table, grid, datagrid, tabulator, editable, sort, format, resizable, list, scrollable, ajax, json, widget, jquery, react, angular, vue |

## Links

- npm: https://www.npmjs.com/package/tabulator-tables
- Repository: https://github.com/tabulator-tables/tabulator
- Homepage: https://tabulator.info/
- Issues: https://github.com/olifolkerd/tabulator/issues
- npm.io page: https://npm.io/package/tabulator-tables

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 6.5.3 (latest) — 2026-09-15
- 5.0.0-alpha.0 (alpha) — 2021-04-25
- 6.5.2 — 2026-06-23
- 6.5.1 — 2026-06-17
- 6.5.0 — 2026-06-15
- 6.4.0 — 2026-03-06
- 6.3.1 — 2025-01-19
- 6.3.0 — 2024-09-29
- 6.2.5 — 2024-07-21
- 6.2.4 — 2024-07-16
- 6.2.3 — 2024-07-16
- 6.2.2 — 2024-07-14
- 6.2.1 — 2024-04-28
- 6.2.0 — 2024-03-29
- 6.1.0 — 2024-03-24
- … 91 more at https://npm.io/package/tabulator-tables/versions

## README

<p align="center">
  <img height="200" src="http://tabulator.info/images/logos/t_hollow.png">
</p>

<p align="center">
	<img height="50" src="http://tabulator.info/images/tabulator.png">
</p>

<p align="center">
An easy to use interactive table generation JavaScript library
</p>

<p align="center">
Full documentation & demos can be found at:  <a href="http://tabulator.info">http://tabulator.info</a>
</p>

***
![Tabulator Table](http://tabulator.info/images/tabulator_table.jpg)
***


Features
================================
Tabulator allows you to create interactive tables in seconds from any HTML Table, Javascript Array or JSON formatted data.

Simply include the library and the css in your project and you're away!

Tabulator is packed with useful features including:

![Tabulator Features](http://olifolkerd.github.io/tabulator/images/featurelist_share.png)


Frontend Framework Support
================================
Tabulator is built to work with all the major front end JavaScript frameworks including React, Angular and Vue.


Setup
================================
Setting up tabulator could not be simpler.

Include the library and the css
```html
<link href="dist/css/tabulator.min.css" rel="stylesheet">
<script type="text/javascript" src="dist/js/tabulator.min.js"></script>
```

Create an element to hold the table
```html
<div id="example-table"></div>
```

Turn the element into a tabulator with some simple javascript
```js
var table = new Tabulator("#example-table", {});
```


### Bower Installation
To get Tabulator via the Bower package manager, open a terminal in your project directory and run the following command:
```
bower install tabulator --save
```

### NPM Installation
To get Tabulator via the NPM package manager, open a terminal in your project directory and run the following command:
```
npm install tabulator-tables --save
```

### CDN - UNPKG
To access Tabulator directly from the UNPKG CDN servers, include the following two lines at the start of your project, instead of the locally hosted versions:
```html
<link href="https://unpkg.com/tabulator-tables/dist/css/tabulator.min.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/tabulator-tables/dist/js/tabulator.min.js"></script>
```

Testing
================================
Tabulator comes with both Unit and End-to-End (E2E) tests. Here’s how you can run them:

```bash
# Unit test
npm run test:unit

# E2E test
npm run build # Make sure to build the project first
npx playwright test # Run the tests
# or
npm run test:e2e

# Run all tests
npm run test
```

---
_Source: https://npm.io/package/tabulator-tables · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
