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

@frame-kit/ui-ng

v0.1.0

Published

Style-agnostic, token-driven Angular UI component library for FrameKit.

Readme

@frame-kit/ui-ng

A style-agnostic, token-driven Angular UI component library. Components own structure, layout, accessibility, and behavior; their entire appearance comes from --fk-* CSS custom properties, so you theme the whole library by supplying tokens — never by overriding component CSS.

  • Standalone + OnPush + signal inputs throughout (Angular 21+).
  • Tree-shakeable — every component is its own entry point, so you only ship what you import.
  • Themeable via @frame-kit/tokens and your own --fk-* overrides.

Install

npm i @frame-kit/ui-ng @frame-kit/tokens

Peer dependencies: @angular/{core,common,forms,router,platform-browser,cdk} ^21.2 and rxjs ^7.

Quick start

1. Load the default theme (in angular.jsonstyles, order matters):

"styles": [
  "node_modules/@frame-kit/tokens/base.css",
  "node_modules/@frame-kit/tokens/dark.css", // optional dark mode
  "src/styles.css" // your overrides last
]

2. Register the icons your app uses (the library ships none):

import { provideIcons } from '@frame-kit/ui-ng';
import { searchIcon, lockIcon } from 'your-icon-source';

export const appConfig = {
  providers: [provideIcons({ search: searchIcon, lock: lockIcon })],
};

3. Import components where you use them (standalone):

import { Component } from '@angular/core';
import { ButtonComponent } from '@frame-kit/ui-ng';

@Component({
  selector: 'app-example',
  imports: [ButtonComponent],
  template: `<fk-button variant="primary">Save</fk-button>`,
})
export class ExampleComponent {}

Both forms work and tree-shake identically — the barrel @frame-kit/ui-ng or the per-component entry point @frame-kit/ui-ng/ui/button. Use the barrel unless you have a reason not to.

Documentation

Each component also ships its own README.md inside the package.

License

MIT