All Projects → NickTomlin → React Table

NickTomlin / React Table

A simple sortable table component for react.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Table

index
The frontend, editor panel, and API of TheIndex.moe
Stars: ✭ 123 (+668.75%)
Mutual labels:  tables
tabular
Tabular simplifies printing ASCII tables from command line utilities
Stars: ✭ 62 (+287.5%)
Mutual labels:  tables
Ngx Easy Table
The Easiest Angular Table. IVY compatible. 9.0kb gzipped! 60fps! Tree-shakeable. 54 features and growing!
Stars: ✭ 255 (+1493.75%)
Mutual labels:  tables
contabs
Simple yet flexible tables for console apps.
Stars: ✭ 51 (+218.75%)
Mutual labels:  tables
Samples-NET.Core-MVC-CSharp
ASP.NET Core 2.0 MVC C# samples for Stimulsoft Reports.Web reporting tool.
Stars: ✭ 28 (+75%)
Mutual labels:  tables
Atomic-Periodic-Table.Android
Atomic - Periodic Table
Stars: ✭ 33 (+106.25%)
Mutual labels:  tables
tableize
Turn lists into tables with ease
Stars: ✭ 12 (-25%)
Mutual labels:  tables
Tabula
Tabula is a tool for liberating data tables trapped inside PDF files
Stars: ✭ 5,420 (+33775%)
Mutual labels:  tables
Hyde
Call of Duty XAsset compiler that transforms raw assets into digestible data.
Stars: ✭ 15 (-6.25%)
Mutual labels:  tables
Cli Table3
Pretty unicode tables for the command line
Stars: ✭ 250 (+1462.5%)
Mutual labels:  tables
Samples-ASP.NET-MVC-CSharp
ASP.NET MVC C# samples for Stimulsoft Reports.Web reporting tool.
Stars: ✭ 31 (+93.75%)
Mutual labels:  tables
character
tool for character manipulations
Stars: ✭ 26 (+62.5%)
Mutual labels:  tables
Table-Detection-Extraction
Detect the tables in a form and extract the tables as well as the cells of the tables.
Stars: ✭ 35 (+118.75%)
Mutual labels:  tables
BetterConsoleTables
Faster, colorable, more configurable, and more robust console colors & tables for C# console applications
Stars: ✭ 59 (+268.75%)
Mutual labels:  tables
Huxtable
An R package to create styled tables in multiple output formats, with a friendly, modern interface.
Stars: ✭ 277 (+1631.25%)
Mutual labels:  tables
furniture
The furniture R package contains table1 for publication-ready simple and stratified descriptive statistics, tableC for publication-ready correlation matrixes, and other tables #rstats
Stars: ✭ 43 (+168.75%)
Mutual labels:  tables
rich
Rich is a Python library for rich text and beautiful formatting in the terminal.
Stars: ✭ 36,988 (+231075%)
Mutual labels:  tables
Rich
Rich is a Python library for rich text and beautiful formatting in the terminal.
Stars: ✭ 31,664 (+197800%)
Mutual labels:  tables
Ascii Art
A Node.js library for ansi codes, figlet fonts, ascii art and other ASCII graphics
Stars: ✭ 437 (+2631.25%)
Mutual labels:  tables
zauberlehrling
Collection of tools and ideas for splitting up big monolithic PHP applications in smaller parts.
Stars: ✭ 28 (+75%)
Mutual labels:  tables

React Table

Build Status NPM package

A simple sortable table component for react.

Usage

npm i @nicktomlin/react-table (not an npm user? see instructions below)

var React = require('react');
var ReactTable = require('react-table');
var data = [
  {favoriteColor:'blue',  age: 30, name: "Athos",      job: "Musketeer"},
  {favoriteColor: 'red' ,  age: 33, name: "Porthos",    job: "Musketeer"},
  {favoriteColor: 'blue' ,  age: 27, name: "Aramis",     job: "Musketeer"},
  {favoriteColor: 'orange' ,  age: 25, name: "d'Artagnan", job: "Guard"}
];

React.render(<ReactTable data={data} />, document.body);

See examples for a more full featured use case.

Usage without NPM

Include the built files in dist with a <script> tag or the module loader of your choice. React-table expects that React is on the window and will not work without it.

Development

# watch js files and start example server
npm start

# run jest tests
npm test

# build for production
npm run build
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].