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

n8n-nodes-aivence-realty

v0.1.5

Published

Nodo n8n para integrar el CRM inmobiliario AivenceRealty

Downloads

27

Readme

n8n-nodes-aivence-realty

Nodo n8n para AivenceRealty CRM (Laravel).

Este paquete añade nodos para interactuar con el CRM inmobiliario AivenceRealty. Permite operaciones completas sobre Properties, Leads, Maintenance Orders, Contractors, y más.

📦 Instalación

npm install n8n-nodes-aivence-realty

O desde la interfaz de n8n: Community Nodes → Install y escribir n8n-nodes-aivence-realty.

🔐 Configuración

  1. Obtén un Bearer Token desde tu panel de AivenceRealty
  2. En n8n, ve a Credentials y crea credenciales de tipo AivenceRealty API
  3. Introduce:
    • URL Base: https://realty.aivence.com (o tu dominio)
    • Bearer Token: Tu token de API
  4. Guarda las credenciales

📋 Recursos Disponibles

1. Property (Propiedades)

  • list - Listar todas las propiedades
  • getSimilar - Obtener propiedades similares
  • getStatistics - Estadísticas de propiedades

2. Lead (Leads)

  • list - Listar leads
  • create - Crear nuevo lead (campos: nombre, telefono, mensaje)

3. Tenant (Inquilinos)

  • list - Listar inquilinos

4. Maintenance Order (Órdenes de Mantenimiento)

  • checkDuplicate - Verificar si existe orden duplicada
  • create - Crear nueva orden
  • get - Obtener orden por ID
  • update - Actualizar orden
  • list - Listar órdenes

5. Contractor (Contratistas)

  • findByCategory - Buscar por categoría (fontanería, electricidad, etc.)
  • findAlternatives - Buscar contratistas alternativos

6. Monthly Cost (Costos Mensuales)

  • track - Registrar costo mensual

7. WhatsApp

  • sendMessage - Enviar mensaje por WhatsApp (Evolution API)

8. Calculator (Calculadoras Financieras) ✨ NUEVO

  • mortgage - Calcular cuota mensual de hipoteca
  • rentalYield - Calcular rentabilidad de inversión (ROI)
  • closingCosts - Calcular costos de escrituración

🎯 Ejemplos de Uso

Crear un Lead

{
  "resource": "lead",
  "operation": "create",
  "nombre": "Juan Pérez",
  "telefono": "5491112345678",
  "mensaje": "Busco departamento 2 ambientes en Palermo"
}

Crear Orden de Mantenimiento

{
  "resource": "maintenanceOrder",
  "operation": "create",
  "clienteId": 123,
  "propiedadId": 456,
  "contratistaId": 789,
  "categoria": "fontanería",
  "urgencia": "alta",
  "descripcionCorta": "Fuga de agua",
  "descripcionDetallada": "Fuga en baño principal..."
}

Calcular Hipoteca

{
  "resource": "calculator",
  "operation": "mortgage",
  "propertyValue": 150000,
  "downPaymentPercent": 20,
  "interestRate": 4.5,
  "loanTermYears": 30
}

Respuesta:

{
  "monthly_payment": 608.02,
  "total_loan": 120000,
  "down_payment": 30000,
  "total_interest": 98887.20,
  "total_paid": 218887.20
}

Calcular Rentabilidad

{
  "resource": "calculator",
  "operation": "rentalYield",
  "propertyValue": 150000,
  "monthlyRent": 1200,
  "annualExpenses": 3000
}

Respuesta:

{
  "annual_rent": 14400,
  "net_annual_income": 11400,
  "gross_yield": 9.6,
  "net_yield": 7.6,
  "roi": 7.6,
  "payback_years": 13.16
}

🔧 Desarrollo Local

# Clonar repositorio
git clone https://github.com/aivence/n8n-nodes-aivence-realty.git
cd n8n-nodes-aivence-realty

# Instalar dependencias
npm install

# Compilar
npm run build

# Vincular localmente
npm link
cd ~/.n8n
npm link n8n-nodes-aivence-realty

# Iniciar n8n
n8n start

📝 Changelog

v0.1.3 (2025-10-12)

  • ✨ Nuevo recurso: Calculator (Calculadoras Financieras)
  • ➕ Operación: Calcular hipoteca (mortgage)
  • ➕ Operación: Calcular rentabilidad (rentalYield)
  • ➕ Operación: Calcular costos de cierre (closingCosts)
  • 📚 README actualizado con ejemplos de calculadoras

v0.1.0 (2025-10-09)

  • 🎉 Versión inicial
  • ✅ 7 recursos implementados
  • ✅ 15 operaciones totales
  • ✅ Integración completa con API Laravel

📄 Licencia

MIT

👨‍💻 Autor

Federico Aivence - [email protected]

🔗 Links