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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@leap-ai/ui

v1.5.19

Published

## Overview

Downloads

1,997

Readme

Project README

Overview

This repository contains Leap's component library using the Atomic Design methodology. The project leverages shadcn for base styled components, which are further customized using TailwindCSS based on Figma designs.

Table of Contents

Atomic Design System

Atomic Design is a methodology for creating design systems. It consists of five distinct levels:

  1. Atoms: Basic building blocks of matter, such as buttons, inputs, and labels.
  2. Molecules: Groups of atoms bonded together, e.g., a form group with a label, input, and button.
  3. Organisms: Complex UI components composed of molecules and/or atoms, like a navigation bar.
  4. Templates: Page-level objects that place components into a layout and articulate the design’s underlying content structure.
  5. Pages: Specific instances of templates that show what a UI looks like with real content.

Best Practices

  • Component Reusability: Create reusable components to maintain consistency and reduce redundancy.
  • TailwindCSS Customization: Use TailwindCSS utility classes to style components according to Figma designs.
  • Consistent Naming: Follow a consistent naming convention for components and CSS classes.
  • Documentation: Document components and their usage to facilitate collaboration and maintenance.

Running Locally

To run this project locally, follow these steps:

  1. Clone the repository:

    git clone https://github.com/your-repo/project-name.git
    cd project-name
  2. Install dependencies:

    bun install
  3. Run the development server:

    bun run storybook
  4. Open your browser and navigate to http://localhost:6006 to see the application in action.

  5. Share live local preview:

    bun run build-storybook && bunx http-server ./path/to/build

Technologies Used

  • React: A JavaScript library for building user interfaces.
  • Next.js: A React framework for server-side rendering and static site generation.
  • TailwindCSS: A utility-first CSS framework for rapid UI development.
  • ShadCN: A component library providing base styled components.
  • Storybook: A tool for developing UI components in isolation.