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

brid-crm

v1.2.4

Published

CRM completo instalable vía npm - CLI + Web

Downloads

1,524

Readme

BRID CRM

CRM completo instalable vía npm que funciona tanto desde la terminal como desde el navegador.

Instalación

Opción 1: Instalación global

npm install -g brid-crm

Opción 2: Ejecutar sin instalar (npx)

npx brid-crm

Uso

Desde la Terminal (CLI)

# Iniciar el servidor y abrir en el navegador
brid-crm start

# Iniciar en un puerto específico
brid-crm start --port 8080

# Gestionar contactos desde la terminal
brid-crm contacts

# Configurar el CRM
brid-crm init

Desde el Navegador

  1. Ejecuta brid-crm start
  2. Se abrirá automáticamente en http://localhost:3000
  3. Interfaz web completa para gestionar contactos y archivos

Funcionalidades

Gestión de Contactos (CRM)

  • Crear, editar, eliminar contactos
  • Búsqueda en tiempo real
  • Campos: nombre, email, teléfono, empresa, notas

Procesamiento de Archivos

  • Subir archivos (imágenes, documentos, CSV, etc.)
  • Obtener información de archivos
  • Leer archivos de texto
  • Copiar archivos

API REST

# GET - Listar contactos
GET /api/contacts

# GET - Buscar contactos
GET /api/contacts/search?q=termino

# GET - Obtener contacto por ID
GET /api/contacts/:id

# POST - Crear contacto
POST /api/contacts
{
  "name": "Juan Pérez",
  "email": "[email protected]",
  "phone": "123456789",
  "company": "Mi Empresa"
}

# PUT - Actualizar contacto
PUT /api/contacts/:id

# DELETE - Eliminar contacto
DELETE /api/contacts/:id

# POST - Subir archivo
POST /api/files/upload

# POST - Procesar archivo
POST /api/files/process

Estructura del Proyecto

brid-crm/
├── package.json
├── bin/
│   └── cli.js              # Punto de entrada CLI
├── src/
│   ├── server.js           # Servidor Express
│   ├── routes/
│   │   ├── contacts.js     # Rutas CRUD contactos
│   │   └── files.js        # Rutas archivos
│   ├── models/
│   │   └── database.js     # Base de datos JSON local
│   └── utils/
│       └── fileProcessor.js
├── public/                  # Frontend web
│   ├── index.html
│   ├── css/style.css
│   └── js/app.js
└── data/                    # Datos locales

Datos

Los datos se almacenan localmente en la carpeta data/ dentro de la instalación:

  • contacts.json - Contactos del CRM
  • config.json - Configuración
  • uploads/ - Archivos subidos

Requisitos

  • Node.js >= 14.0.0
  • npm >= 6.0.0

Licencia

MIT