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

v0.1.3

Published

n8n community node that fires a workflow when an NFC tag is scanned via the Nodey mobile app (iOS + Android). Accepts payloads from both platforms and normalizes them into a single shape. Verified-compatible.

Downloads

74

Readme

n8n-nodes-nodey

npm version License

n8n community node that fires a workflow when you tap an NFC tag with the Nodey mobile app.

Verified-compatible — installable on n8n Cloud via Settings → Community Nodes. Accepts payloads from both iOS and Android Nodey clients and normalizes them into a single shape.

How it works

  1. You install n8n-nodes-nodey in your n8n instance.
  2. You add a Nodey NFC Trigger node to a workflow. n8n gives you a Production webhook URL.
  3. In the Nodey app, you create an NFC trigger pointing at that URL.
  4. Every tap on the tag POSTs to the webhook and runs your workflow.

Installation

In n8n Cloud or self-hosted:

  1. Settings → Community Nodes → Install
  2. Enter the package name: n8n-nodes-nodey
  3. Click Install

What you get

  • Webhook trigger — one POST per NFC tap, no polling.
  • Cross-platform payload normalization — iOS and Android send different JSON shapes; the node merges them into a consistent output.
  • Android customData parsing — Nodey on Android currently sends customData as a JSON-encoded string. The node parses it transparently (toggleable).
  • Optional tag UID allowlist — restrict the trigger to a specific set of NFC tags.
  • Forward-compatible HMAC signature verification — Nodey does not sign requests today, but if you set a webhook secret the node will require an X-Nodey-Signature (or X-Signature, or X-Hub-Signature-256) header. Ready for whenever Nodey ships signing.

Normalized output

The default Normalized output format produces:

{
  "platform": "ios" | "android" | "unknown",
  "triggerName": "Front Door Tag" | null,
  "triggerType": "nfc",
  "event": "tap",
  "timestamp": "2026-05-16T12:30:45.123Z",
  "source": "Nodey",
  "triggerId": "8b3f9a7c-…" | null,
  "customData": { … } | "raw text" | null,
  "raw": { /* the original request body */ }
}

Switch to Raw Payload in the node settings if you'd rather work with what Nodey sent directly.

Payload shapes (as of Nodey v2.3.x)

iOS

{
  "trigger_name": "Front Door Tag",
  "trigger_type": "nfc",
  "event": "tap",
  "timestamp": "2026-05-16T12:30:45.123Z",
  "source": "Nodey"
}

Android (valid custom payload)

{
  "triggerId": "8b3f9a7c-2d1e-4b5a-9c8f-6a3d1e7b2f4c",
  "timestamp": "2026-05-16T12:30:45.123Z",
  "customData": "{\"door\":\"front\",\"action\":\"unlock\"}"
}

Android (invalid custom payload fallback)

{
  "triggerId": "8b3f9a7c-2d1e-4b5a-9c8f-6a3d1e7b2f4c",
  "timestamp": "2026-05-16T12:30:45.123Z",
  "customPayload": "raw text the user entered"
}

Delivery semantics

Nodey attempts delivery once per scan. If the device is offline or the request fails, Nodey records the failed attempt locally but does not replay it. Workflows that need guaranteed delivery should handle acknowledgement, retry, or queueing inside n8n.

This matches what the Nodey iOS and Android devs confirmed: at-most-once, best-effort delivery, no retries from the app. NFC scans are intentional physical actions and a delayed replay would surprise users.

Credentials

Credentials are optional. Skip them unless you need allowlisting or signing.

| Field | Purpose | |---|---| | Webhook Secret | Shared secret for HMAC verification. Leave blank — Nodey does not sign requests today. Setting it will reject unsigned requests, so configure once Nodey ships signing. | | Allowed Tag UIDs | Comma-separated list of tag UIDs / trigger IDs. If set, scans from other tags are silently dropped (200 OK, no workflow run). |

Local testing

Once installed, paste the Test URL from the node panel into curl:

# iOS payload
curl -X POST "<test-webhook-url>" \
  -H "Content-Type: application/json" \
  -d '{"trigger_name":"Front Door Tag","trigger_type":"nfc","event":"tap","timestamp":"2026-05-16T12:30:45.123Z","source":"Nodey"}'

# Android payload
curl -X POST "<test-webhook-url>" \
  -H "Content-Type: application/json" \
  -d '{"triggerId":"8b3f9a7c-2d1e-4b5a-9c8f-6a3d1e7b2f4c","timestamp":"2026-05-16T12:30:45.123Z","customData":"{\"door\":\"front\"}"}'

More tools for n8n users

  • Nodey — Mobile command-centre for n8n. NFC triggers, geo-fenced location triggers, AI workflow builder, and on-the-go workflow debugging.
  • n8n-nodes-ghost-blocks-cloud — Publish to Ghost CMS from n8n Cloud using a clean content-blocks format.
  • n8n-nodes-ghost-blocks — Full-features Ghost publishing for self-hosted n8n (image upload, oEmbed, OpenGraph).

License

MIT