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

@nitgrid/angular

v1.0.2

Published

NitGrid — lightweight, high-performance data grid for Angular. Virtual scrolling to millions of rows, sorting, filtering, selection, pagination, pinning, inline editing and CSS-variable theming.

Readme

@nitgrid/angular

Website · Documentation

Lightweight, high-performance data grid for Angular. Virtual scrolling to millions of rows, sorting, filtering, selection, pagination, column pinning, inline editing and CSS-variable theming.

npm install @nitgrid/angular @nitgrid/core

Peer dependencies: @angular/core and @angular/common (17 or 18). @nitgrid/core (the engine) is installed alongside as a runtime dependency.

Quick start

<nit-grid> is a standalone component — import it directly, or via NitGridModule.

import { Component } from '@angular/core';
import { NitGridComponent } from '@nitgrid/angular';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [NitGridComponent],
  template: `
    <div style="height: 480px">
      <nit-grid
        [columnDefs]="columnDefs"
        [rowData]="rowData"
        theme="nitgrid-light"
        [pagination]="true"
        [pageSize]="25"
        rowSelection="multiple"
        (rowClicked)="onRowClicked($event)">
      </nit-grid>
    </div>
  `
})
export class AppComponent {
  columnDefs = [
    { field: 'name', headerName: 'Name', sortable: true, filterable: true },
    { field: 'email', headerName: 'Email', width: 240 },
    { field: 'role', headerName: 'Role' }
  ];
  rowData = [
    { name: 'Ada Lovelace', email: '[email protected]', role: 'Engineer' },
    { name: 'Alan Turing', email: '[email protected]', role: 'Architect' }
  ];
  onRowClicked(e: unknown) { console.log('row', e); }
}

Add a theme stylesheet to your angular.json styles array (or import it in styles.css):

"styles": [
  "node_modules/@nitgrid/angular/styles/nitgrid-light.css",
  "src/styles.css"
]

The grid fills its parent, so give the host a height.

Features

  • Virtual scrolling — smooth to millions of rows.
  • Sorting, filtering — per-column, Excel-style popup filters.
  • Selection — single / multiple, checkbox column.
  • Pagination — client-side and server-side.
  • Column tools — pinning (left/right), resize, reorder, column chooser.
  • Inline editing — editable text cells with change events.
  • Theming — CSS-variable themes; ships light, dark and alpine.

Theming

Swap the stylesheet and the theme input together: nitgrid-light, nitgrid-dark or nitgrid-alpine. Override the CSS variables in @nitgrid/angular/styles/_variables.scss to brand it.

Enterprise

Row grouping, cell/row merge, cell comments, validation suite and Excel/PDF export are available in @nitgrid/angular-enterprise. See https://github.com/nitstack/nitgrid.

License

MIT © NitStack