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

library-bsoft-ui

v0.0.3

Published

BSoft UI es una librería Angular de componentes reutilizables para estandarizar la interfaz de usuario en proyectos Angular. Incluye componentes como tablas, campos de texto, listas desplegables y gráficos, agrupados en el módulo principal `BsoftUiModule`

Readme

README.md – Biblioteca BSoft UI

📘 Descripción

BSoft UI es una librería Angular de componentes reutilizables para estandarizar la interfaz de usuario en proyectos Angular. Incluye componentes como tablas, campos de texto, listas desplegables y gráficos, agrupados en el módulo principal BsoftUiModule. El proyecto contiene una aplicación demo (demo-bsoft) para visualizar y probar los componentes de forma interactiva.


🚀 Requisitos previos

Asegúrate de tener instaladas las siguientes versiones o superiores:

  • Node.js: v20.x
  • npm: v10.x
  • Angular CLI: v18.x (o superior)

Verifica con:

node -v
npm -v
ng version

🛠️ Instalación de dependencias

En la raíz del proyecto:

npm install

Si hay conflictos entre dependencias:

npm install --legacy-peer-deps

🧩 Componentes incluidos

| Componente | Descripción | | --------------- | ---------------------------------------------------------------------------------------- | | DataTable | Muestra datos en formato tabla con selección, ordenamiento y paginación. | | TextField | Campo de texto controlado, ideal para formularios reactivos. | | SelectList | Lista desplegable configurable (selección única o múltiple). | | ChartWidget | Componente de visualización gráfica (barras, líneas, pastel). |


⚙️ Comandos principales

  • Compilar la librería:
ng build bsoft-ui

Genera dist/bsoft-ui.

  • Ejecutar la aplicación demo:
ng serve demo-bsoft

Abrir: http://localhost:4200

  • Ver cambios en la demo mientras se desarrolla: En una terminal:
ng build bsoft-ui --watch

En otra:

ng serve demo-bsoft

📦 Publicar / Usar la librería en otro proyecto

  1. Construir el paquete:
ng build bsoft-ui
cd dist/bsoft-ui
npm pack

Genera bsoft-ui-<version>.tgz.

  1. Instalar en otro proyecto:
npm install ./bsoft-ui-0.0.1.tgz
  1. Importar en el módulo (ejemplo app.module.ts):
import { BsoftUiModule } from 'bsoft-ui';

@NgModule({
  imports: [BsoftUiModule],
  bootstrap: [AppComponent]
})
export class AppModule {}
  1. Usar componentes en plantillas:
<lib-data-table></lib-data-table>
<lib-text-field label="Nombre"></lib-text-field>
<lib-select-list [options]="listaOpciones"></lib-select-list>
<lib-chart-widget [data]="datosGrafico"></lib-chart-widget>

🧹 Reiniciar el entorno (solución de errores)

rm -rf node_modules dist
npm install
ng build bsoft-ui
ng serve demo-bsoft

💡 Flujo de desarrollo recomendado

  • Terminal A:
ng build bsoft-ui --watch
  • Terminal B:
ng serve demo-bsoft

Permite ver cambios en caliente en la demo mientras se editan componentes.


🧾 Notas finales

  • Exporta todos los componentes públicos en projects/bsoft-ui/src/public-api.ts.
  • demo-bsoft es para pruebas internas; no se publica junto a la librería.
  • Se recomienda usar standalone: true en componentes para compatibilidad con Angular moderno.