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

v0.1.0

Published

n8n community node for rue render: url/html to pdf/png/jpeg, paid with x402 usdc on base

Readme

n8n-nodes-rue

an n8n community node that adds a Rue Render node: render a url or raw html to pdf, png, or jpeg using the live rue render api (https://rue.mossgate.dev/v1/render). each render is paid with x402 v2, usdc on base. the buyer wallet signs an eip-3009 authorization gaslessly, so it needs only usdc, no eth for gas.

node

Rue Render (rueRender)

inputs:

  • source: url or html
  • url or html (depending on source)
  • format: pdf, png, or jpeg
  • output binary field: name of the binary property to hold the file (default data)

output: the rendered file as binary data on each item, plus { format, bytes } in json.

credential

Rue Render API (rueRenderApi)

  • buyer private key: evm private key (0x hex) for a wallet holding usdc on base
  • base rpc url: defaults to https://mainnet.base.org

fund the wallet with usdc on base (contract 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913). no eth is required.

build

cd n8n-node
npm install
npm run build

this compiles the typescript to dist/ and copies the icon. npm run lint runs a type-check only pass.

install into n8n (local test)

community nodes load from your n8n user folder. link the built package:

cd n8n-node
npm run build
mkdir -p ~/.n8n/nodes
cd ~/.n8n/nodes
npm install /home/nerorosa/Documents/autoincome/products/n8n-node

restart n8n. the "Rue Render" node appears in the node panel, and "Rue Render API" appears under credentials. alternatively, once published, install it from settings > community nodes by entering n8n-nodes-rue.

publish later

not published yet. when ready:

cd n8n-node
npm run build
npm login
npm publish --access public

the n8n-community-node-package keyword and the n8n field in package.json let n8n discover and load it.