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

@bonjour_les_pixels/component-library

v0.0.7

Published

Bonjour les Pixels -- component-library

Readme

Installing the DS in a React Project

This guide walks you through installing and using this DS on an existing React app.

For help with setting up the necessary development environment, see the Create React App Getting Started Guide.

By the end of this guide, you’ll have the DS set up on your project and have access to all of our components.

Consult Storybook for the list of available components and props that they require.

Install component-library Packages

Install the React package. It contains all of the React components and styles needed to build with component-library.

npm i @bonjour_les_pixels/component-library

Adding Your First Component

This is just one example to implement functionality to get your project started.

Here's an example with the Button component:

import { Atoms } from "@bonjour_les_pixels/component-library";

function NewButtonComponent(props) {
  return (<Atoms.Button 
        notice="info"
        handleClick={ () => handleClick) }
        variant="text"
    /">
        Click Here
    </Atoms.Button>)
}

This Design System is based on the Atomic Design Principles developed by Brad Frost. Atomic Design methodology involves breaking an interface layout down into its basic components, which are then reused throughout the same interface. The main point in using this method is to create a flexible and future-proof design elements.

Each element of the layout is basically classified according to its own composition.

There are 3 distinct levels in Atomic Design:

Atoms
Molecules
Organisms

Finding the code to other Components

This Design System leverages Storybook to document all the React components and style guidelines. The Storybook documentation can be found here. For your convenience, the Design System components have been organized into logical categories Atoms, Molecules, Organisms based on both form and function.

* Go to the [bonjour_les_pixes/component-library React Storybook](https://guillaumebarreau.github.io/component-library/).

* Find the Component you need in the "Components" section.

* Navigate to the Docs tab. It's typically at the top of screen next to Canvas.

* Navigate down the page until you find your component variant.