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

jattac.libs.web.responsive-table

v0.8.0

Published

A fully responsive, customizable, and lightweight React table component with a modern, mobile-first design and a powerful plugin system.

Downloads

240

Readme

ResponsiveTable

Enterprise-Grade React Data Grid Component

ResponsiveTable is a high-performance, type-safe React component designed for complex data visualization. It provides seamless layout transitions between desktop-optimized tabular displays and mobile-optimized card views, ensuring data integrity and accessibility across all device form factors.

Core Capabilities

  • Dynamic Layout Orchestration: Automated transformation between standard table structures and mobile-optimized interfaces based on configurable breakpoints.
  • Extensible Architecture: A robust plugin system for implementing sorting, filtering, row selection, and asynchronous data fetching.
  • Intelligent Layout Scaling: Automated recalculation of footer colSpan ranges to maintain structural alignment when columns are programmatically excluded.
  • Performance Optimized: An atomized internal architecture that decouples state management from rendering, minimizing re-render cycles.
  • Type Safety: Comprehensive TypeScript definitions for predictable implementation and robust development workflows.

Installation

npm install jattac.libs.web.responsive-table

Basic Implementation

The following example demonstrates a standard implementation of the ResponsiveTable component:

import React from 'react';
import ResponsiveTable from 'jattac.libs.web.responsive-table';

const data = [
  { id: 1, name: 'Administrative User' },
  { id: 2, name: 'Standard User' }
];

const columns = [
  { displayLabel: 'Identifier', cellRenderer: (row) => row.id },
  { displayLabel: 'User Name', cellRenderer: (row) => row.name },
];

const App = () => (
  <ResponsiveTable 
    data={data} 
    columnDefinitions={columns} 
  />
);

Documentation Directory

The following technical documentation provides comprehensive implementation guidance:

  1. Technical Implementation Guide - Practical examples for core features, including infinite scroll and plugin integration.
  2. Functional Capabilities - A high-level overview of the component's feature set.
  3. API Reference - Technical specifications for props, interfaces, and type definitions.
  4. Configuration Specification - Detailed guidance on performance tuning and UI customization.
  5. Architecture and Contribution Guide - Internal system design and development environment setup.

Next Step: Review the Technical Implementation Guide