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

v1.0.4

Published

n8n community node for TrainAR — augmented reality training platform. Trigger workflows on TrainAR events and call TrainAR API actions from n8n.

Readme

n8n-nodes-trainar

npm version License: MIT

n8n community node for TrainAR — the AR training platform.

Trigger n8n workflows when TrainAR events fire (task created, session completed, skill executed, etc.) and call TrainAR API actions (create tasks, invite users, execute skills) from any n8n workflow.

Install

Self-hosted n8n

  1. In your n8n instance, go to Settings → Community Nodes → Install.
  2. Paste n8n-nodes-trainar and click Install.
  3. Reload n8n.

n8n Cloud

Verified community node install is rolling out per workspace by n8n. Once approved, install the package from the Nodes panel with one click.

Authenticate

  1. In TrainAR Dashboard → API, generate a tenant API key (starts with tak_). Required scopes depend on what you need:
    • manage:webhooks — for the TrainAR Trigger node (subscribe/unsubscribe)
    • read:tasks, write:tasks, read:users, read:skills — for the various Find/Read operations of the TrainAR node
    • manage:users — for the User → Invite action
    • write:skills — for the Skill → Execute action
  2. In n8n, create a new credential of type TrainAR API and paste the key.

Nodes

TrainAR Trigger (REST hook)

One trigger node, six event types:

| Event | When it fires | |---|---| | task.created | A new operational task is created in TrainAR | | task.status_changed | A task changes status (open / in_progress / completed / cancelled) | | task.completed | A task is completed | | session.started | A training session starts on an AR device | | session.completed | A training session ends | | skill.executed | A TrainAR skill is executed (success or failure) |

Select one or more events on the trigger node. The webhook payload is flattened — fields from the event's data object are top-level, with _event and _timestamp carried alongside for routing logic.

TrainAR (actions + searches)

Three resources, six operations:

| Resource | Operation | What it does | |---|---|---| | Task | Create | Create a new operational task | | Task | Update Status | Move a task between open / in_progress / completed / cancelled | | Task | Find | List recent tasks (client-side title filter) | | User | Invite | Send an invitation email to a new user | | User | Find | List users in the tenant | | Skill | Execute | Run a TrainAR skill server-to-server (auto-resolves session_context) |

Compatibility

  • n8n: 1.0.0+
  • Node.js: 20.x+
  • n8n-workflow: 1.0.0+

Endpoints

The node calls the TrainAR production API at https://xddgmkiguaohdewecmju.supabase.co/functions/v1:

  • POST /webhook-subscribe — REST-hook lifecycle (create)
  • GET /webhook-subscribe?endpoint_id=… — REST-hook lifecycle (checkExists)
  • DELETE /webhook-subscribe?endpoint_id=…&_source=n8n — REST-hook lifecycle (delete, source-scoped)
  • POST /api-tenant-tasks — Create task
  • PATCH /api-tenant-tasks?task_id=… — Update task status
  • GET /api-tenant-tasks — List tasks
  • POST /api-tenant-users — Invite user
  • GET /api-tenant-users — List users
  • POST /api-tenant-skills-execute — Execute skill

Source

github.com/Train-AR/n8n-nodes-trainar

License

MIT