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

@kasmav/omnipivot

v1.1.2

Published

High-performance pivot table web component. Framework-agnostic, built for speed and massive datasets.

Readme

OmniPivot SDK

A high-performance, framework-agnostic pivot table web component built for speed and massive datasets.

Features

  • Massive Data Support: Handle millions of rows with smooth virtual scrolling and multi-threaded Web Worker processing.
  • Framework Agnostic: Native Web Component that works with React, Vue, Angular, or Vanilla JS.
  • Advanced Aggregations: Sum, Count, Average, Min, Max, and more across multiple levels.
  • Premium Themes: Polished light and dark modes out of the box.

Installation

Via NPM

npm install @kasmav/omnipivot

Via ZIP Download

If you downloaded the SDK as a ZIP file, you can find the pre-built bundles in the dist-wc folder.

Quick Start

1. Import the Component and Styles

If you are using a bundler (Vite, Webpack, etc.):

import '@kasmav/omnipivot';
import '@kasmav/omnipivot/style.css';

For Vanilla HTML:

<link rel="stylesheet" href="path/to/pivot-themes.css">
<script type="module" src="path/to/pivot-table.es.js"></script>

2. Configure the Background Worker

OmniPivot uses a Web Worker to keep the UI responsive during data processing. You must provide the path to the worker file:

<pivot-table 
  id="pivot" 
  worker-path="/assets/pivot.worker.js">
</pivot-table>

Note: If you installed via NPM, the worker file is located in node_modules/@kasmav/omnipivot/assets/pivot.worker.js. Ensure your build tool or server serves this file correctly.

3. Initialize with Data

const pivot = document.getElementById('pivot');
pivot.data = [
  { Category: 'Furniture', Sales: 1500, Region: 'East' },
  { Category: 'Technology', Sales: 2500, Region: 'West' },
];

Examples & Demos

The SDK includes a comprehensive set of examples demonstrating various integration patterns (CSV streaming, API integration, Event handling, etc.).

  • ZIP Download Users: You can find all examples in the demo/ folder within your SDK package. Simply serve the dist-wc folder using any local web server to run them.
  • NPM Users: Examples are excluded from the NPM package to keep the install size minimal. You can download the full SDK with examples from our official website.

Documentation

For the full API reference and framework-specific integration guides (React, Angular, Vue), visit kasmav.com/docs.

License

Copyright (c) 2026 Kasmav.com. All rights reserved. Commercial License. Please see the details on the LICENSE.