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

bizan-grid

v0.1.1

Published

BiZanGrid - High-performance Vue3 data grid component

Downloads

12

Readme

@bizan/grid

High-performance Vue3 data grid component

npm version License

Features

  • 🚀 Extreme Performance: Handle 1 million rows × 70 columns smoothly with virtual scrolling
  • 📊 Rich Features: Sorting, filtering, grouping, editing, master-detail, and more
  • 🎯 Row Models: ClientSide, ServerSide, Infinite, and Viewport models
  • 🔧 Flexible: Extensive API and customization options
  • 📦 Small Bundle: < 200KB (gzipped)
  • 🎨 Themeable: Built-in themes and custom theme support
  • 🌐 i18n: Internationalization support (Chinese & English)
  • Accessible: Full keyboard navigation and screen reader support
  • 🧩 Plugin System: Extensible architecture
  • 📈 Performance Monitoring: Built-in performance tracking

Installation

# Using pnpm
pnpm add @bizan/grid vue

# Using npm
npm install @bizan/grid vue

# Using yarn
yarn add @bizan/grid vue

Quick Start

<template>
  <BiZanGrid
    :row-data="rowData"
    :column-defs="columnDefs"
    :grid-options="gridOptions"
    @grid-ready="onGridReady"
  />
</template>

<script setup lang="ts">
import { ref } from 'vue';
import { BiZanGrid } from '@bizan/grid';
import type { GridApi, ColumnDef, GridOptions } from '@bizan/grid';
import '@bizan/grid/style.css';

const gridApi = ref<GridApi>();

const rowData = ref([
  { id: 1, name: 'John Doe', age: 30, email: '[email protected]' },
  { id: 2, name: 'Jane Smith', age: 25, email: '[email protected]' },
  { id: 3, name: 'Bob Johnson', age: 35, email: '[email protected]' },
]);

const columnDefs = ref<ColumnDef[]>([
  { field: 'id', headerName: 'ID', width: 80 },
  { field: 'name', headerName: 'Name', width: 150, sortable: true, filter: true },
  { field: 'age', headerName: 'Age', width: 100, sortable: true, filter: 'number' },
  { field: 'email', headerName: 'Email', width: 200, filter: 'text' },
]);

const gridOptions = ref<GridOptions>({
  rowSelection: 'multiple',
  enableRangeSelection: true,
  enableFillHandle: true,
  pagination: true,
  paginationPageSize: 20,
});

function onGridReady(api: GridApi) {
  gridApi.value = api;
}
</script>

Core Features

Virtual Scrolling

Efficiently render millions of rows with smooth 60 FPS scrolling.

Row Models

  • ClientSide: All data loaded in browser
  • ServerSide: Lazy loading with server-side operations
  • Infinite: Infinite scrolling with block loading
  • Viewport: Only visible rows loaded

Editing

  • Cell editing with validation
  • Row editing mode
  • Undo/Redo support (50 steps)
  • Custom editors

Selection

  • Single/Multiple row selection
  • Range selection (Excel-like)
  • Fill handle with smart fill
  • Copy/Paste support

Filtering

  • Text, Number, Date, Set filters
  • Custom filter components
  • Multi-condition filtering
  • Server-side filtering

Grouping

  • Multi-level grouping (up to 5 levels)
  • Aggregation functions (sum, avg, min, max, count)
  • Custom aggregation functions
  • Expand/Collapse groups

Export

  • Excel export with styles
  • CSV export
  • JSON export
  • Custom export formats

Themes

  • Light theme (default)
  • Dark theme
  • Material theme
  • Custom themes with CSS variables

Internationalization

  • Built-in Chinese and English
  • Custom language packs
  • RTL support

Accessibility

  • Full keyboard navigation
  • ARIA labels
  • Screen reader support
  • High contrast mode

API Reference

Grid API

interface GridApi {
  // Data operations
  setRowData(data: RowData[]): void;
  getRowData(): RowData[];
  updateRowData(updates: RowDataUpdate[]): void;
  
  // Selection
  getSelectedRows(): RowData[];
  selectAll(): void;
  deselectAll(): void;
  
  // Filtering
  setFilterModel(model: FilterModel): void;
  getFilterModel(): FilterModel;
  
  // Sorting
  setSortModel(model: SortModel): void;
  getSortModel(): SortModel;
  
  // Export
  exportToExcel(options?: ExportOptions): void;
  exportToCsv(options?: ExportOptions): void;
  
  // And more...
}

See full API documentation for details.

Examples

Check out the examples directory for more usage examples:

Documentation

Performance

BiZanGrid is designed for extreme performance:

  • Initial Render: < 3s for 1M rows × 70 columns
  • Scroll FPS: ≥ 60 FPS
  • Memory Usage: < 500MB for 1M rows
  • Bundle Size: 6.17 KB (gzipped)

Browser Support

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)

TypeScript

BiZanGrid is written in TypeScript and provides full type definitions.

import type { 
  GridApi, 
  ColumnDef, 
  GridOptions,
  RowData,
  FilterModel,
  SortModel 
} from '@bizan/grid';

License

MIT © BiZan Team

Contributing

See the Contributing Guide for details.

Support