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

@openng/optimus-ui

v2.0.2

Published

Optimus UI is a community-maintained, MIT licensed UI library for Angular with 80+ accessible components and design-agnostic theming, including Aura, Material, Lara and Nora presets.

Readme


Optimus UI is a comprehensive library of open-source UI Components for Angular applications. Designed for flexibility and enterprise-readiness, it provides a powerful foundation for building modern web interfaces.

📦 Installation

Optimus UI provides an Angular CLI schematic for quick and easy installation in a new project. Run:

ng add @openng/optimus-ui

This installs the library and wires provideOptimus({ theme: { preset: Aura } }) into your application config (pick a different preset with --theme Lara|Material|Nora).

Please note that Optimus UI requires Angular 21+.

ng add only sets up new projects — on a workspace that already uses PrimeNG it makes no changes and points you to the migration schematic below.

Migrating from PrimeNG

Optimus UI is API-compatible with PrimeNG v21. On a PrimeNG v21 workspace, run the dedicated migration schematic:

ng generate @openng/optimus-ui@1:migrate-from-primeng          # options: --skip-install, --force

This replaces primeng and @primeuix/* dependencies with their @openng counterparts, rewrites TypeScript imports (primeng/button@openng/optimus-ui/button, @primeuix/themes/aura@openng/optimus-ui-themes/aura), and renames the config API (providePrimeNGprovideOptimus, PrimeNGOptimus, PrimeNGConfigTypeOptimusConfigType). Anything it cannot migrate is listed as a warning for manual review.

Projects on PrimeNG v20 or older: upgrade to PrimeNG v21 first, then migrate.

🚀 Quick Start

Optimus UI components can be imported as standalone components or via their respective modules. Here is a quick example demonstrating how to use the Button component:

  1. Import the component module in your application:
import { Component } from '@angular/core';
import { ButtonModule } from '@openng/optimus-ui/button';

@Component({
  selector: 'app-root',
  imports: [ButtonModule],
  template: `<p-button label="Click Me!" />`
})
export class AppComponent {}

📖 Documentation

For detailed documentation, interactive component demos, theming guides, and more, please visit the official website:

Optimus UI Documentation

🤝 Contributing

We welcome and appreciate contributions from the community! If you're interested in helping improve Optimus UI, please take a look at our Contributing Guide for instructions on how to get started.

📄 License

Optimus UI is licensed under the MIT License.