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-armoris-buyer

v0.1.4

Published

n8n node to programmatically purchase items from an Armoris Gateway using the x402 protocol.

Readme

n8n-nodes-armoris-buyer

Native n8n community node for AI agents to purchase items from WooCommerce stores using the x402 payment protocol.

npm License: MIT

Features

  • Auto-Discovery — Provide a store URL, the node scrapes <meta> tags to find the Gateway URL and Store ID automatically
  • x402 Native — Handles quote requests, EIP-712 payment signatures, and order submission under the hood
  • Secure Credentials — Agent private keys are stored in n8n's encrypted credential vault
  • Dynamic Inputs — All fields support n8n expressions, so upstream AI agents can inject URLs and items at runtime

Installation

Via n8n UI (Recommended)

  1. Go to Settings → Community Nodes → Install
  2. Search for n8n-nodes-armoris-buyer
  3. Click Install

Via Docker

FROM n8nio/n8n:latest
USER root
COPY ./armoris-agent-buyer /usr/local/lib/n8n/armoris-agent-buyer
COPY ./n8n-nodes-armoris-buyer /usr/local/lib/n8n/n8n-nodes-armoris-buyer
RUN cd /usr/local/lib/n8n/armoris-agent-buyer && npm install --include=dev && npm run build
RUN cd /usr/local/lib/n8n/n8n-nodes-armoris-buyer && npm install --include=dev && npm run build
RUN mkdir -p /usr/local/lib/n8n/custom && cd /usr/local/lib/n8n/custom && npm init -y && \
    npm install /usr/local/lib/n8n/n8n-nodes-armoris-buyer /usr/local/lib/n8n/armoris-agent-buyer
USER node

Set N8N_CUSTOM_EXTENSIONS=/usr/local/lib/n8n/custom in your environment.

Usage

1. Configure Credentials

  1. In n8n, create a new Armoris Agent API credential
  2. Enter the Agent's EVM private key (0x...)
  3. Set the Network ID (e.g., 31337 for local, 324705682 for Skale Testnet)
  4. Set the RPC URL

2. Add the Node

  1. Add Armoris Purchase Agent to your workflow canvas
  2. Select your credential
  3. Set the Shop URL — the WooCommerce product page URL (e.g., https://store.com/product/sneakers)
  4. Set the Items — JSON array of [{ "sku": "product-123", "quantity": 1 }]
  5. Execute!

Dynamic Inputs from AI Agents

All fields support n8n expressions. Wire an upstream AI agent's output directly:

  • Shop URL: {{ $json.shopUrl }}
  • Items: {{ JSON.stringify($json.items) }}
[AI Agent] → [IF: x402 supported?] → [Armoris Buyer] → [Response]
                                   ↘ [Stripe Node]    → [Response]

Node Reference

| Field | Type | Description | |-------|------|-------------| | Shop URL | string | WooCommerce product or shop page URL | | Items | json | Array of { sku, quantity } objects | | Customer Email | string | Buyer email (default: [email protected]) | | Customer First Name | string | (default: AI) | | Customer Last Name | string | (default: Agent) |

Development

npm install
npm run dev    # Watch mode
npm run build  # Production build

License

MIT © txFusion