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

v0.1.2

Published

An n8n community node for temporarily hosting images and videos with Picnode.

Readme

n8n-nodes-picnode

This is an n8n community node. It lets you upload, list, and delete files on a Picnode server from your n8n workflows.

Picnode is a lightweight service for temporarily hosting generated images and videos behind an API key. Uploaded files receive a public HTTPS URL and expire automatically according to the server configuration.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

  • Upload: Upload an image or video from an n8n binary field.
  • List: Return one n8n item for every active Picnode file.
  • Delete: Remove a hosted file before it expires.

Credentials

Create a Picnode API credential with:

  • Base URL: The root URL of your Picnode server. It defaults to https://picnode.nodstrike.com.
  • API Key: A key configured in the Picnode server's API_KEYS environment variable.

The credential sends the key in the X-API-Key request header.

Compatibility

Tested locally with n8n 2.31.4 and prepared for installation on n8n 2.30.8. The package uses the current n8n community-node API and requires a self-hosted n8n version that supports community packages.

Usage

The Upload operation reads file bytes from $binary, not $json. Set Input Binary Field to the field produced by the previous node; data is the usual default.

The upstream binary must include a MIME type. Picnode validates the MIME type, file extension, binary signature, configured upload-size limit, and rate limit. The Upload output includes direct_url and expires_at.

Resources

Version history

  • 0.1.2: Remove runtime module-resolution requirements during Docker installation.
  • 0.1.1: Improve compatibility with n8n's isolated community-node loader.
  • 0.1.0: Initial release with Upload, List, and Delete operations.