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

sheetnext

v0.1.9

Published

A powerful spreadsheet editor library with AI capabilities

Readme


✨ 特点

  • 📊 电子表格功能 - 支持电子表格核心功能如:单元格编辑、样式、公式引擎、图表、排序、筛选等
  • 🤖 AI 工作流 - 内置 AI 全自动操作工作流,简单配置可以生成模板、数据分析、公式编写、跨表逻辑操纵等
  • 📁 导入导出 - 原生支持 Excel (.xlsx) 文件的导入和导出,无需插件前端秒操作
  • 🚀 开箱即用 - 不用单独配置任何库和插件,安装后简单配置即用所有功能
  • 🔄 快速迭代 - 版本快速迭代更新,有问题可随时联系或提交 issue

🚀 快速开始

📦 使用 npm 安装

npm install sheetnext
<div id="SNContainer" style="width:100vw;height:100vh;padding:0 7px 7px"></div>
import SheetNext from 'sheetnext';
import 'sheetnext.css';

// 注意设置容器#SNContainer宽高
const SN = new SheetNext(document.querySelector('#SNContainer'));

🌐 浏览器直接引入

<!-- 引入样式 -->
<link rel="stylesheet" href="dist/sheetnext.css">

<!-- 编辑器容器 -->
<div id="SNContainer" style="width: 100vw; height: 100vh;padding:0 7px 7px"></div>

<!-- 引入脚本 -->
<script src="dist/sheetnext.umd.js"></script>

<!-- 初始化,注意设置宽高 -->
<script>
  const SN = new SheetNext(document.querySelector('#SNContainer'));
</script>

⚙️ 初始化配置

const SN = new SheetNext(document.querySelector('#container'));

🔗 相关链接