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

fichapui

v0.1.0

Published

A custom UI library built on top of HeroUI

Readme

FichapUI

Una biblioteca de componentes UI personalizados construida sobre HeroUI, diseñada para crear interfaces modernas y atractivas.

FichapUI Version React License

Instalación

Para instalar FichapUI, ejecuta uno de los siguientes comandos en tu terminal:

# Con npm
npm install fichapui framer-motion

# Con pnpm
pnpm add fichapui framer-motion

# Con yarn
yarn add fichapui framer-motion

Características

  • 🎨 Personalizable: Tema personalizable para adaptarse a tu marca
  • 🚀 Moderno: Construido con React 18+ y TypeScript
  • 📦 Modular: Utiliza solo los componentes que necesitas
  • 🧩 Extensible: Fácil de extender y personalizar
  • 📱 Responsive: Diseñado para funcionar en todos los tamaños de pantalla

Uso básico

import { FichapUIProvider, Button, Card, Input } from 'fichapui';

function App() {
  return (
    <FichapUIProvider>
      <Card>
        <h1>Hello from FichapUI</h1>
        <Input label="Username" placeholder="Enter your username" />
        <Button color="primary">Submit</Button>
      </Card>
    </FichapUIProvider>
  );
}

Componentes disponibles

CardStats

El componente CardStats es ideal para mostrar métricas y estadísticas en un formato visualmente atractivo.

import { CardStats } from 'fichapui';

function StatsExample() {
  return (
    <CardStats
      title="Usuarios activos"
      value="2,453"
      trend={12}
      trendLabel="vs mes anterior"
      icon="users"
      color="blue"
    />
  );
}

FichapCarousel

Un carrusel de imágenes personalizable con múltiples opciones de animación.

import { FichapCarousel } from 'fichapui';

function CarouselExample() {
  const slides = [
    { id: 1, content: <img src="/slide1.jpg" alt="Slide 1" /> },
    { id: 2, content: <img src="/slide2.jpg" alt="Slide 2" /> },
    { id: 3, content: <img src="/slide3.jpg" alt="Slide 3" /> },
  ];

  return (
    <FichapCarousel
      slides={slides}
      autoPlay={true}
      interval={5000}
      animation="slide"
    />
  );
}

Personalización del tema

Puedes personalizar el tema de FichapUI utilizando el proveedor de tema:

import { FichapUIProvider } from 'fichapui';

const myTheme = {
  colors: {
    primary: '#3B82F6',
    secondary: '#10B981',
    // ... más colores personalizados
  },
  // ... más personalizaciones
};

function App() {
  return (
    <FichapUIProvider theme={myTheme}>
      {/* Tu aplicación aquí */}
    </FichapUIProvider>
  );
}

Dependencias

Esta biblioteca requiere las siguientes dependencias:

  • React 18 o superior
  • React DOM 18 o superior
  • HeroUI 2.7.0 o superior

Desarrollo

Para contribuir al desarrollo de FichapUI:

# Clonar el repositorio
git clone https://github.com/yourusername/fichap-ui.git

# Instalar dependencias
pnpm install

# Iniciar Storybook para desarrollo
pnpm storybook

Licencia

MIT