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

easy-react-table-component

v1.1.1

Published

Ease to use table component

Readme

Easy-react-table-component

Table component Table component

An easy-to-use and customizable React table component. Version: 1.1.1 Table component

Installation

  • Installation via npm : npm install easy-react-table-component

  • Import in a React file : import Table from 'easy-react-table-component';

Requirements

To display icons you need to install Font Awesome.

  1. Got to Font Awesome

  2. Create and install your Free kit in your HTML head

Props

| Name | Type | Description | Example | | ------------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | data | JSON | The JSON data that will be displayed in the table.The data will be flattened to be displayed in the table. | [{firstName: "Linda", lastName: "Randall", startDate: "2022/04/15", address: { street: "594th Hope Street", city: "Hatteras", state: "KS", zipCode: "35656" }, birthDate: "1994/12/10", department: "Human Ressources"}] | | listToDisplay | JSON | "JSON file specifying the elements of the JSON data to be displayed in the table."dataName" represents the name of the data, and "displayData" represents the column title." | [{ dataName: "firstName", displayName: "First Name" }] | | tableTitle | String | Table's Title | "Employees" | | researchBar | Boolean | true: displayed, false: hidden (default: true) | researchBar = {true} | | rowPagination | Number | Sets the default number of rows per page. (default: 10) | rowPagination={7} | | labelPerPage | String | Sets the default name of elements per page (default: "Elements") | labelPerPage={"Emplpoyees"} // "Employees per Pages |

Styling

You can change the style of the table by passing a class name using props that you will use with CSS/SASS

| Name | Type | Description | Example | | -------------------- | ------ | ---------------------------- | ------------------------------------------------- | | classHeader | String | Styling the header | classHeader = {"header"} | | classHeaderTitle | String | Styling the header title | classHeaderTitle = {"table-header-title"} | | classTableContainer | String | Styling the Table container | classTableContainer = {"table-table-container"} | | classTableHeader | String | Styling the Table header | classTableHeader = {"table-table-header"} | | classTableContent | String | Styling the Table content | classTableContent = {"table-table-content"} | | classTablePagination | String | Styling the Table pagination | classTablePagination = {"table-table-pagination"} | | classTableComponent | String | Styling the Table component | classTableComponent = {"table-table-component"} |

Repository

https://github.com/JohanHauteville/react-table-component

Changelog

  • ver 1.0.2 : Fix React import
  • ver 1.0.4 : Fix Table Length
  • ver 1.0.5 : Fix research Bar error when there's no data
  • ver 1.0.6 : Add Ramda Librairie to flatten data
  • ver 1.0.7 : Fix error on flatten data
  • ver 1.0.8 : Fix flatten data with mergeAll
  • ver 1.0.9 : Fix error on empty data
  • ver 1.1.0 : Update responsivity
  • ver 1.1.1 : Update Documentation

Thanks for your support !