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

v1.0.3

Published

Generate recipe images for Pinterest with RecipeVis API

Readme

n8n-nodes-recipevis

Generate beautiful recipe images for Pinterest using the RecipeVis API.

Installation

Via n8n Community

Go to Settings > Community Nodes in your n8n instance and install:

n8n-nodes-recipevis

Or via CLI:

cd ~/.n8n/nodes
npm install n8n-nodes-recipevis

Features

  • 🎨 3 Templates: Classic Blue, Modern Teal, Elegant Rose
  • 🖼️ Two Images: Top (main) and Bottom (close-up)
  • ✏️ Custom Fonts: Poppins, Playfair Display, Dancing Script, etc.
  • 🎨 Custom Colors: Choose any primary color
  • ☁️ Cloudinary Upload: Automatic upload to Cloudinary

Usage

Node Parameters

| Parameter | Required | Default | Description | |-----------|----------|---------|-------------| | API URL | Yes | http://srv998445.hstgr.cloud:3021 | Your RecipeVis API URL | | Template | Yes | modern-teal | Visual style template | | Title | Yes | - | Recipe title | | Website | No | mon-site.com | Website watermark | | Top Image URL | Yes | - | Main recipe photo | | Bottom Image URL | Yes | - | Close-up/detail photo | | Font | Yes | Poppins | Title font family | | Color | Yes | #328e85 | Primary color | | Upload to Cloudinary | Yes | true | Auto-upload image |

Templates

  • Classic Blue: Gradient background with centered title box
  • Modern Teal: Full-width bars with elegant typography
  • Elegant Rose: Soft style with cursive fonts

API Response

{
  "success": true,
  "cloudinary_url": "https://res.cloudinary.com/.../image.png",
  "public_id": "recipevis/...",
  "format": "png",
  "width": 1024,
  "height": 2048
}

RecipeVis API

This node requires the RecipeVis API running. Deploy it with Docker:

docker run -d -p 3021:3021 \
  -e CLOUDINARY_CLOUD_NAME=your-cloud \
  -e CLOUDINARY_API_KEY=your-key \
  -e CLOUDINARY_API_SECRET=your-secret \
  recipevis-api

License

MIT