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

simpleui.dev

v0.5.0

Published

Simple UI - Next.js component library and CLI

Readme

Simple UI.dev

Biblioteca de componentes de UI para Next.js

Documentación →

1. Motivación

El principal motivo por el que decidí desarrollar esta biblioteca de componentes UI es ofrecer a mi alumnado de Desarrollo de Aplicaciones Web una introducción muy básica al trabajo con componentes.

Este proyecto no pretende proporcionar código avanzado ni convertirse en una biblioteca ampliamente usada. La intención es meramente didáctica.

Se persigue que el alumno sea capaz de usar, modificar y ampliar su conjunto personalizado de componentes haciendo uso de esta biblioteca si así lo considera oportuno.

Esta biblioteca está enfocada principalmente a los componentes que interactúan con el backend, como son los de tipo Input y Form.

2. Principios

El código de este proyecto se mantendrá en todo momento lo más simple posible siguiendo los siguientes principios:

  • Finalidad didáctica.
  • Pensado para Next.js/TailwindCSS y SSR.
  • Responsive. Adaptable a distintos tamaños de pantalla.
  • Soporte para temas claro y oscuro.

3. Documentación

La documentación está accesible en SimpleUI.dev.

4. Pasos a seguir

Para usar esta biblioteca realiza los siguientes pasos:

4.1. Descarga los componentes

npx  simpleui.dev  init

Información:

Junto con los componentes se instalan también los siguientes paquetes:

  • next-themes, para soporte de modos claro/oscuro. Usado por componente ThemeToggle
  • sonner, para mensajes de tipo toast. Usado por componente Form

Todos los componentes se guardarán en la carpeta src/components/simpleui o components/simpleui según tengas configurado tu proyecto.

4.2. Importa los componentes

import { Alert, Button, Form } from "@/componentes/simpleui";

4.3. Usa los componentes

<Alert> 
  Mensaje informativo.
</Alert>

5. Lista de Componentes disponibles

MENSAJES y SEPARADORES

  • Alert
  • Alert small
  • Badge
  • Space
  • Separator

ESPERAS

  • Skeleton
  • Spinner

CUADROS EMERGENTES

  • Tooltip
  • Popover
  • Dropdown
  • Dropdown2
  • Drawer
  • Modal

MENÚS

  • MenuLink
  • MainMenu

CLICKables

  • Button
  • Switch

FORMULARIOS

  • InputText
  • InputNumber
  • InputRange
  • InputDate
  • InputImage
  • InputCheck
  • InputCheck multiple
  • InputGroup
  • InputGroup multiple
  • InputSelect
  • InputSelect multiple
  • InputArea
  • Submit
  • Form

LISTADOS

  • Table
  • List
  • Card
  • List2
  • Card2

OTROS

  • Icons
  • DragAndDrop
  • ThemeToggle
  • Pagination
  • Sidebar