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

aina-table

v1.0.0

Published

A lightweight, feature-rich table widget built with Lit and TypeScript. Supports sorting, filtering, pagination, and custom rendering.

Readme

Table Widget

A modern, customizable table component built with Lit for web applications.

Features

  • Sorting - Click column headers to sort data
  • Filtering - Filter data by any column
  • Pagination - Handle large datasets efficiently
  • Customizable - Striped rows, borders, compact mode
  • TypeScript - Full TypeScript support
  • Web Components - Works with any framework
  • Responsive - Mobile-friendly design

Installation

npm install aina-table

Usage

ES Modules

import 'aina-table';

// Define your data
const employees = [
  { id: 1, name: 'John Doe', email: '[email protected]', department: 'Engineering' },
  { id: 2, name: 'Jane Smith', email: '[email protected]', department: 'Marketing' }
];

// Define columns
const columns = [
  { key: 'id', title: 'ID', sortable: true, width: '80px' },
  { key: 'name', title: 'Name', sortable: true, filterable: true },
  { key: 'email', title: 'Email', filterable: true },
  { key: 'department', title: 'Department', filterable: true, sortable: true }
];

// Use in HTML
const table = document.querySelector('table-widget');
table.columns = columns;
table.data = employees;
table.sortable = true;
table.filterable = true;
table.pagination = true;

UMD (Browser)

<script src="https://unpkg.com/aina-table/dist/index.umd.js"></script>
<script>
  const table = document.querySelector('table-widget');
  table.columns = columns;
  table.data = employees;
</script>

API Reference

Properties

| Property | Type | Default | Description | |----------|------|---------|-------------| | columns | TableColumn[] | [] | Column definitions | | data | any[] | [] | Table data | | sortable | boolean | true | Enable sorting | | filterable | boolean | true | Enable filtering | | pagination | boolean | false | Enable pagination | | pageSize | number | 10 | Items per page | | striped | boolean | false | Striped rows | | bordered | boolean | true | Show borders | | compact | boolean | false | Compact mode | | loading | boolean | false | Loading state |

Events

| Event | Detail | Description | |-------|--------|-------------| | sort | { column, direction } | Fired when sorting changes | | filter | FilterConfig[] | Fired when filters change | | pageChange | number | Fired when page changes | | rowClick | { row, index } | Fired when row is clicked | | cellClick | { value, row, column, index } | Fired when cell is clicked |

Column Configuration

interface TableColumn<T = any> {
  key: keyof T;
  title: string;
  sortable?: boolean;
  filterable?: boolean;
  width?: string;
  align?: 'left' | 'center' | 'right';
  render?: (value: T[keyof T], row: T, index: number) => string | HTMLElement;
}

Examples

See the demo for a complete example with interactive controls.

License

MIT