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

@yeonpm/table

v0.2.1

Published

High-performance data table with canvas virtualization, cell editing, filtering, and pagination

Readme

@yeonpm/table

Canvas 기반 고성능 React 데이터 테이블 라이브러리입니다.
High-performance React data table with canvas virtualization.

| | | |---|---| | Docs | yeonpm-table.vercel.app | | 한국어 / English | 헤더에서 언어 전환 · Language toggle in the header | | Package | @yeonpm/table | | Repo | github.com/yeonpm/yeonpm-table | | Docs UI | Built with @yeonpm/docs-template |

Features / 기능

  • Canvas 3-pane virtualization (3000+ rows)
  • Column pin / resize / drag reorder
  • Header filters, sorting, quick search
  • Cell select / edit / copy / keyboard navigation
  • Row selection, pagination, column settings
  • Domain-free core — extend via ports / slots / TableProvider
  • Typed config: TableConfigInterface, FieldDataInterface

Install

npm install @yeonpm/table

Peer dependencies:

npm install react react-dom @emotion/react @emotion/styled

Static icons

Icons resolve via getAssetUrl()/image/... by default.
Package ships public/image (also dist/image after build). Options:

  1. Copy node_modules/@yeonpm/table/public/image → app public/image (Vite/Next), or
  2. Call setTableAssetBase('/path-to-assets') / set globalThis.__YEONPM_TABLE_ASSET_BASE__

Quick Start

import { DataTable, useDataTable, TableProvider } from '@yeonpm/table';

function MyList() {
  const table = useDataTable({
    initialValues: {
      fieldData: columnsFromServer,
      tableConfig: {
        filterable: true,
        searchable: true,
        pagingEnable: true,
        refreshEnable: true,
        colSetEnable: true,
      },
    },
    ports: {
      scopeId: 'my-list',
      persistColumns: async (fields) => { /* POST */ },
      downloadExcel: async (query) => { /* download */ },
      onCellAction: (payload) => { /* LINK / FEATURE */ },
    },
  });

  // fetch → table.setData / setTotalRows / setTotalPages

  return (
    <TableProvider>
      <DataTable {...table} scopeId="my-list" locale="ko" />
    </TableProvider>
  );
}

Server config merge (ERP pattern)

// layout API
table.setTableConfig({ ...serverLayout });
table.setPageSize(serverLayout.pageSize);

// list API
table.setData(rows);
table.setTotalRows(total);

See examples/erp-adapter.ts for a fuller adapter sketch.

Public API

| Export | Description | |--------|-------------| | DataTable / DataTableProps | Table UI | | useDataTable / UseDataTableReturn | Headless state hook | | TableProvider / useTableOverlays | Popup/toast injection | | Pagination | Standalone pagination | | TableConfigInterface / FieldDataInterface | Config types | | DataTablePorts | persistColumns, downloadExcel, cellRenderers, onCellAction, scopeId | | getAssetUrl / setTableAssetBase | Icon URL helper | | mergeFieldDataFromConfig / toTablePageIndex | Utilities |

Docs site (KO / EN)

npm install
npm run dev    # http://localhost:3010
npm run test
npm run build

License

MIT