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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@ovh-ux/muk

v0.10.1

Published

MUK:Manager UI Kit

Downloads

2,288

Readme

⚛️⚡ Manager UI Kit Library

Design-system library for OVHcloud Manager µ-apps.

Features

  • Unified Entry Point for Manager Development: Access all Manager components, hooks, and utilities from a single, streamlined library — eliminating dependency clutter, simplifying imports, and accelerating development with one consistent source of truth.
  • Built on OVHcloud Design System v19: Harnesses the power and consistency of OVHcloud’s latest design principles — ensuring visual harmony, modern aesthetics, and a unified user experience across all Manager applications. Elimination of shadow DOM for simplified tests.
  • Absorb Breaking Changes from ODS: As MUK exposes wrappers for every ODS components, in future MUK can absorb the pressure of ODS braking change to reduce the impact on µ-apps
  • Exclusive Manager Components: Includes purpose-built Manager-only components such as Datagrid, layouts, Modals, Tags Management and more — crafted specifically to meet complex product needs and streamline development across Manager platforms.
  • Accessibility by Design: Every component is crafted with WCAG-compliant accessibility in mind, ensuring inclusivity and usability for all users right out of the box.
  • Optimized for Performance: Engineered for scalability and speed — with Datagrid virtualization that efficiently handles massive data sets while keeping interfaces lightning fast.
  • Tree-Shakeable Architecture: Designed with modular exports that support tree-shaking, ensuring your applications load only what they need — reducing bundle size, improving load times, and boosting overall performance.
  • Developer-Friendly Documentation: Explore an interactive documentation hub on Manager-Wiki, featuring live examples, ready-to-use code snippets, and detailed guidelines to speed up adoption and integration.

Usage

To use the Manager UI Kit in your project,

  1. Add a dependency in your app,
yarn add @ovhcloud/muk
  1. Import CSS in your app,
 import '@ovh-ux/muk/dist/style.css';

Note: This requirement is temporary and will no longer be needed with future releases.

  1. Import components in your tsx file and use it as per your needs,
import { Badge, BADGE_COLOR, BADGE_SIZE } from '@ovh-ux/muk';

return (
  <Badge color={BADGE_COLOR.information} size={BADGE_SIZE.md}>
    Active
  </Badge>
);

Contributing

For development guidelines, refer our documentation.

Request new component here. Report a bug here.

Useful Commands

Run the commands using yarn package manager,

  • build: Generates the production build of the package.
  • test: Run all tests to validate code functionality and quality.
  • test:ci: Runs the test suite and reports code coverage metrics.
  • lint:modern: Check code for linting errors and enforce coding standards.
  • lint:modern:fix: Runs the lint:modern with fix option to automatically fix the reported issues