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.2.3

Published

A pure front-end spreadsheet component with Excel-like capabilities, built-in native AI workflows, and flexible LLM integration for data operations.

Readme

  • SheetNext is a pure front-end, high-performance spreadsheet engine that provides enterprises with a ready-to-use intelligent spreadsheet foundation.
  • With the AI-driven development approach, a single developer + AI can integrate and deliver complex enterprise spreadsheet solutions.
  • Common scenarios like ledgers, budgets, analytics, data entry, and approvals can produce a first version in minutes.

✨ Key Features

  • 📊 Full Spreadsheet Capabilities — Formula engine, charts, pivot tables, super tables, slicers, conditional formatting, data validation, sparklines, freeze panes, sorting & filtering, and more
  • 🤖 AI-Powered Workflow — Built-in AI automation for template generation, data analysis, formula writing, and cross-sheet logic
  • 📁 Native File Support — Import/export Excel (.xlsx), CSV, and JSON out of the box, no extra plugins needed
  • 🚀 Zero-Config Setup — All features built in, no additional dependencies required
  • ⚡ High-Performance Rendering — Canvas-based virtual scrolling handles large datasets with ease

🚀 Quick Start

SheetNext can be integrated with just a few lines of code and works with any front-end framework (Vue, React, Angular, etc.).

Option 1: Traditional Integration

Install via npm

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

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

Browser Direct Import (CDN)

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>SheetNext Demo</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/sheetnext.css">
</head>
<body>
  <div id="SNContainer" style="width:100vw;height:100vh;padding:0 7px 7px"></div>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sheetnext.umd.js"></script>
  <script>
    const SN = new SheetNext(document.querySelector('#SNContainer'));
  </script>
</body>
</html>

Internationalization (i18n)

The default language is English (en-US). A built-in Chinese (zh-CN) locale is available.

Import locale via npm:

import SheetNext from 'sheetnext';
import zhCN from 'sheetnext/locales/zh-CN.js';

SheetNext.registerLocale('zh-CN', zhCN);

const SN = new SheetNext(document.querySelector('#SNContainer'), {
  locale: 'zh-CN'
});

Import locale via CDN:

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sheetnext.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sheetnext.locale.zh-CN.umd.js"></script>
<script>
  const SN = new SheetNext(document.querySelector('#SNContainer'), {
    locale: 'zh-CN'
  });
</script>

Option 2: AI-Driven Development (Recommended)

Step 1: Download the AI Development Reference

  • Open docs/detail/ in the repository.
  • The core references are docs/detail/core-api.md, docs/detail/events.md, and docs/detail/enums.md.
  • Protocol supplements are docs/detail/ai-relay.md and docs/detail/json-format.md.

Step 2: Feed docs/detail to Your AI Tool

Use Cursor / Claude / ChatGPT / Copilot or any AI coding assistant. Provide the docs/detail/ reference set first, then describe your requirements.

Recommended prompt template:

You are a senior SheetNext AI development expert. Please read and understand the documentation I provide, then give a directly implementable solution.
Execution order:
1) Read: docs/detail/core-api.md
2) Read as needed: docs/detail/events.md, docs/detail/enums.md, docs/detail/ai-relay.md, and docs/detail/json-format.md
3) Identify user goals (business goals + technical goals)
4) Output a minimum viable implementation (get it running first, then optimize)
5) All APIs and code must strictly follow the documentation
6) Provide verification steps and risk points
Constraints:
- Do not fabricate APIs
- Do not skip edge cases
- Prioritize reusing existing capabilities, avoid over-engineering

Step 3: Describe Your Business Goal

For example:

  • "Build a sales pivot analysis template with charts and slicers"
  • "Build a multi-sheet budget entry system with permissions and printing"
  • "Migrate an existing Excel template to an online editable version"

🎯 Use Cases

  • Online reporting systems, BI analytics front-ends, business dashboards
  • Spreadsheet engine modules in ERP / CRM / Finance / Supply Chain systems
  • Complex business forms for budgets, settlements, reconciliation, planning, and scheduling
  • AI-powered scenarios: auto-generate tables, analysis, templates, and logic

Browser Support

| Chrome | Firefox | Safari | Edge | |--------|---------|--------|------| | 80+ | 75+ | 13+ | 80+ |

License

Apache-2.0. See LICENSE.