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

v0.2.0

Published

n8n community node for Kash file storage - upload, download, search, and manage files

Readme

n8n-nodes-kashstash

n8n community node for Kash - integrate with Kash Files for file storage and the Probes API for digest creation directly from n8n workflows.

Features

  • Digest Creation - Create digests via the Probes API from files or text
  • File Upload - Upload files to Kash Files with tags and descriptions

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in your n8n instance
  2. Select Install
  3. Enter n8n-nodes-kash and click Install

Manual Installation

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

Restart n8n after installation.

Credentials

Configure the following credentials based on which features you need:

Kash Files (for file uploads)

| Field | Description | |-------|-------------| | Kash Files Base URL | The base URL of your Kash Files instance (e.g., https://kash.example.com) | | Kash Files Upload Key | Upload key for file uploads (x-upload-key header) |

Probes API (for digest creation)

| Field | Description | |-------|-------------| | Node Name | Your Pulse node name (used in URL: probes-{nodeName}.xyzpulseinfra.com) | | Probe ID | The Probe ID for digest creation | | Probe Key | API key for the Probes API (X-PROBE-KEY header) |

Operations

Digest

| Operation | Description | |-----------|-------------| | Create | Create a digest via Probes API. Supports binary file or text input. Requires tags and optional context prompt. |

File

| Operation | Description | |-----------|-------------| | Upload | Upload a file to Kash Files. Requires binary data input. Supports optional tags and description. |

Usage Examples

Create a Digest from Text

  1. Add a Kash node
  2. Select Digest resource and Create operation
  3. Set Input Type to Text
  4. Enter your text content
  5. Add tags (required)
  6. Optionally add a context prompt

Create a Digest from a File

  1. Use a Read Binary File node or HTTP Request node to get file data
  2. Connect to the Kash node
  3. Select Digest resource and Create operation
  4. Set Input Type to Binary File
  5. Set the binary property name (default: data)
  6. Add tags (required)
  7. Optionally add a context prompt

Upload a File to Kash Files

  1. Use a Read Binary File node or HTTP Request node to get file data
  2. Connect to the Kash node
  3. Select File resource and Upload operation
  4. Set the binary property name (default: data)
  5. Optionally add tags and description

Resources

License

MIT