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

intable

v0.0.84

Published

Readme

Intable

🎯 一个组件搞定所有表格场景 — SolidJS / React / Vue 框架通用

npm license stars


🚀 在线体验 Demo


🎯 核心功能一览

  • ✅ 虚拟滚动 — 百万行数据流畅运行
  • ✅ 单元格编辑 — text / number / date / select / checkbox / range / color
  • ✅ 列筛选排序 — 内置 FilterPlugin / SortPlugin
  • ✅ Excel 复制粘贴 — 多单元格选区 TSV 兼容
  • ✅ 撤销重做 — Ctrl+Z / Ctrl+Y
  • ✅ Excel 导入导出 — 一键导出 xlsx
  • ✅ 数据校验 — Zod schema 集成
  • ✅ 变更比对 — DiffPlugin 高亮追踪

🤖 AI 时代的工作流

安装 Skill:

npx skills add huodoushigemi/intable -y --skill intable

效果: 描述需求(如"加一个大数据量的可编辑表格"),Copilot 自动给出正确代码。


📈 真实项目对比,以「用户管理」模块为例:

| 指标 | 使用前 | 使用后 | |------|--------|--------| | 代码行数 | 500+ | 200- | | AI 消耗 | 100% | <70% |


🚀 快速开始

# SolidJS
pnpm add intable

# React
pnpm add @intable/react

# Vue 3
pnpm add @intable/vue

创建一个表格,只需几行代码:

import Intable from 'intable'
// import Intable from '@intable/react'
// import Intable from '@intable/vue'

<Intable
  columns={[
    { id: 'name', name: '姓名', width: 120 },
    { id: 'age',  name: '年龄', width: 80  },
  ]}
  data={[
    { id: 1, name: 'Alice', age: 28 },
    { id: 2, name: 'Bob',   age: 32 },
  ]}
  border
/>

🌟 为什么选择 Intable

  1. 插件化架构 — 责任链 rewriteProps 管道,插件完全可组合、可替换
  2. 框架通用 — SolidJS / React / Vue 共享同一套插件 API
  3. 性能优先 — 虚拟滚动,行/列双向渲染,百万行不卡顿
  4. AI 集成 — Copilot Skill 让 AI 写出正确用法
  5. 渐进增强 — 从简单表格到复杂企业级需求,平滑升级

License

MIT