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-acelera

v1.0.3

Published

Integración de Acelera para n8n

Downloads

5

Readme

n8n-nodes-acelera

Integración oficial de Acelera para n8n.
Permite autenticar con una API Key, obtener un access_token y consumir endpoints de Acelera (colaboradores, equipos, OKRs, KPIs y planes). Incluye selects dinámicos (equipos y períodos) cargados desde la API.

Estado: Alpha / Community Node


✨ Funcionalidades

  • Autenticación vía API Key → POST /auth/loginaccess_token.
  • Selects dinámicos con loadOptions:
    • Team (GET /team)
    • Periods (GET /basic-plan)
  • Operaciones incluidas:
    • Collaborators: listar, crear, eliminar
    • Teams: listar
    • OKRs: listar por plan, actualizar avance de KR
    • KPIs: listar grupos, listar por grupo, actualizar avance
    • Plans: obtener detalle del plan (por teamId + idBasicPlan)

🔐 Credenciales

En Credentials de n8n:

  • Acelera OAuth2 API (en realidad usa API Key simple)
    • API Key: tu API Key de Acelera

El nodo internamente llama a POST /auth/login con la API Key y cachea el access_token en el static data del nodo hasta su expiración.


🧩 Uso

  1. Instala el paquete (ver instalación).
  2. Crea la credencial Acelera OAuth2 API y pega tu API Key.
  3. Añade el nodo Acelera en tu workflow.
  4. Elige Resource y Operation:
    • CollaboratorsGet All / Create / Delete
    • TeamsGet all
    • OKRsGet all (by plan) / Add advance
    • KPIsGet all groups / Get all by group / Add advance
    • PlansGet Detail plan (requiere Team + Period)

Los parámetros (p. ej., idTeam, idBasicPlan, idKr, year, month, etc.) se muestran según la operación y se envían como parte de la URL o body según corresponda.


⚙️ Endpoints (mapeo rápido)

  • Collaborators
    • GET /collaborator
    • POST /collaborator
    • DELETE /collaborator
  • Teams
    • GET /team
  • OKRs
    • GET /okr/plans/{idPlan}
    • POST /kr-history-result
  • KPIs
    • GET /okr/kpis/{idTeam}
    • GET /kr/okr/{idGroupKPI}
    • PATCH /kr-month/{idKr}/{year}/{month}
  • Plans
    • GET /plan/search/{idTeam}/{idBasicPlan}

Los selects dinámicos usan:

  • GET /team
  • GET /basic-plan

🧪 Ejemplo rápido

  • Plans → Get Detail plan
    1. Selecciona Resource: Plans
    2. Operation: Get Detail plan
    3. Team: usa el selector dinámico (carga de /team)
    4. Periods: usa el selector dinámico (carga de /basic-plan)
    5. Ejecuta: realiza GET /plan/search/{idTeam}/{idBasicPlan} con Bearer access_token.

📦 Instalación

Desde n8n (Community Nodes)

  1. Settings → Community Nodes → Install.
  2. Busca n8n-nodes-acelera y confirma.

Local dev (clonado)

npm i
npm run build
# copia o monta la carpeta 'dist/' en tu directorio de custom nodes de n8n
# (o publica en npm y usa Community Nodes)