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

@openfactu/cli

v0.0.7

Published

CLI para gestionar OpenFactu: migraciones, tenants, plugins y setup

Readme

@openfactu/cli

CLI oficial para instalar, gestionar y desplegar OpenFactu — ERP de facturacion open source.

Instalacion

npm i -g @openfactu/cli

Inicio rapido

openfactu install        # Descarga e instala OpenFactu
openfactu deploy         # Configura acceso externo
openfactu setup          # Configuracion inicial de BD

Comandos

Instalacion y actualizacion

| Comando | Descripcion | |---------|-------------| | openfactu install [dir] | Descarga desde releases de GitHub con Docker | | openfactu update | Actualiza sin perder datos | | openfactu update:check | Comprueba si hay versiones nuevas |

Despliegue

| Comando | Descripcion | |---------|-------------| | openfactu deploy | Wizard para configurar acceso externo (LAN/internet) | | openfactu deploy:status | Estado de los contenedores Docker | | openfactu rebuild | Reconstruye y reinicia contenedores | | openfactu logs | Muestra logs de los servicios | | openfactu stop | Para todos los servicios | | openfactu restart | Reinicia sin rebuild |

Base de datos

| Comando | Descripcion | |---------|-------------| | openfactu setup | Configuracion inicial: BD, admin, primer tenant | | openfactu migrate | Ejecuta migraciones pendientes | | openfactu migrate:status | Estado de migraciones por tenant |

Tenants (empresas)

| Comando | Descripcion | |---------|-------------| | openfactu tenant list | Lista empresas | | openfactu tenant create | Crea una empresa nueva | | openfactu tenant sync | Sincroniza migraciones |

Plugins

| Comando | Descripcion | |---------|-------------| | openfactu plugin list | Lista plugins instalados con estado por tenant | | openfactu plugin search | Busca en el marketplace (interactivo) | | openfactu plugin install <nombre> | Descarga e instala del marketplace | | openfactu plugin update [nombre] | Actualiza uno o todos | | openfactu plugin remove <nombre> | Elimina un plugin | | openfactu plugin link [dir] | Enlaza un plugin externo (symlink) | | openfactu plugin unlink <nombre> | Quita el enlace | | openfactu plugin push [dir] | Sube un plugin a un servidor remoto | | openfactu plugin watch [dir] | Auto-sync al guardar (desarrollo remoto) | | openfactu plugin dev [nombre] | Servidor en modo desarrollo con hot reload |

Otros

| Comando | Descripcion | |---------|-------------| | openfactu version | Versiones del sistema |

Desarrollo remoto de plugins

# Desde otro ordenador, sube tu plugin automaticamente al guardar
openfactu plugin watch \
  --server http://mi-servidor:3000 \
  --client-id ofk_... \
  --client-secret ofs_...

Las dev keys se generan desde la UI del ERP: Plugins > Desarrollo > Generar API Key.

Uso desde cualquier directorio

openfactu --path /ruta/a/openfactu migrate

# o con variable de entorno
export OPENFACTU_HOME=/ruta/a/openfactu
openfactu migrate

Requisitos

  • Node.js >= 18
  • Docker Desktop (para instalar y desplegar)
  • Git

Links