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

@undercoatcss/breadcrumb

v0.5.1

Published

Breadcrumb component for the Undercoat CSS framework

Readme

@undercoatcsss/breadcrumb

Breadcrumb is a component of the Undercoat.css framework.

Travis (.org) npm (scoped) WCAG 2.0 Level AA schema.org

CAUTION! IT'S UNDER HEAVY DEVELOPMENT CURRENTLY! DON'T USE IT IN PRODUCTION!

Description

Breadcrumb is a logically and functionally independent reusable page component (block), which represents a secondary navigation scheme that reveals the user's location in a website.

Installation

NPM

npm install @undercoatcss/breadcrumb

Usage

After installation, you can link or import the assets into your project:

CDN

<link rel="stylesheet" href="https://unpkg.com/@undercoatcss/breadcrumb@latest/dist/breadcrumb.min.css">

Webpack

import '@undercoatcss/breadcrumb/breadcrumb.css';

Settings

The component provides CSS custom property to change its defaults.

| Property | Default value | - | - | --breadcrumb--separator | \2192

HTML markup

Without microdata

<nav class="breadcrumb" aria-label="Breadcrumb">
  <ul class="breadcrumb__list">
    <li class="breadcrumb__item">
      <a class="breadcrumb__link" href="#">Index</a>
    </li>
    <li class="breadcrumb__item">
      <a class="breadcrumb__link" href="#">Category</a>
    </li>
    <li class="breadcrumb__item">
      <a class="breadcrumb__link" aria-current="page">Subategory</a>
    </li>
  </ul>
</nav>

With microdata

<nav class="breadcrumb" aria-label="Breadcrumb">
  <ul class="breadcrumb__list" itemscope itemtype="http://schema.org/BreadcrumbList">
    <li class="breadcrumb__item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
      <span itemprop="name">
        <a class="breadcrumb__link" href="#" itemtype="http://schema.org/Thing" itemprop="item">Index</a>
      </span>
      <meta itemprop="position" content="1">
    </li>
    <li class="breadcrumb__item" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
      <span itemprop="name">
        <a class="breadcrumb__link" href="#" itemtype="http://schema.org/Thing" itemprop="item">Category</a>
      </span>
      <meta itemprop="position" content="2">
    </li>
    <li class="breadcrumb__item">
      <a class="breadcrumb__link" aria-current="page">Subategory</a>
    </li>
  </ul>
</nav>

Browser support

Undercoat is compatible with 2 recent desktop versions of:

  • Chrome
  • Edge
  • Firefox
  • Opera
  • Safari

and 2 recent mobile versions of:

  • Chrome
  • Safari

We support only recent browsers to keep the components codebase clean and provide high performance.

The .browserlist config is provided.

Key concepts

Undercoat is based on the next main principles:

Contributing

If you're interested in the improvement of this project you can help in the following ways:

  • bug reporting and new feature requesting by creating issues on plugin GitHub page;
  • contribution to a project following these instructions.