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-supabase-advanced

v0.1.0

Published

n8n community node for Supabase with relation selects, upsert, RPC, and typed payloads

Readme

n8n-nodes-supabase-advanced

Supabase Advanced is an n8n community node for Supabase with better support for relational reads than the built-in node.

It keeps the standard row CRUD flow, then adds:

  • visual relation builder for PostgREST joins and nesting
  • raw select fallback for advanced queries
  • upsert
  • rpc(...) function calls
  • custom /rest/v1 API calls
  • optional user JWT on top of the project API key

Features

  • Row operations: Create, Get, Get Many, Update, Delete, Create or Update
  • relation builder with nested relations
  • manual filters for row queries
  • custom schema support through Accept-Profile / Content-Profile
  • Function resource for Supabase RPC
  • Custom API Call resource for direct PostgREST access

Credentials

The node uses three credential fields:

  • Host - your Supabase project URL, for example https://your-project.supabase.co
  • API Key - sent in the apikey header
  • Access Token / JWT - optional bearer token for user-context requests

Recommended setup for server-side automations:

  • Host = your project URL
  • API Key = your service_role key
  • Access Token / JWT = leave empty

Use Access Token / JWT only when you intentionally want requests to run as a specific signed-in user and respect that user's RLS context.

Relation Builder

For Row operations you can choose:

  • Select Mode = Builder
  • Select Mode = Raw

The builder lets you configure:

  • root columns
  • relation name
  • optional alias
  • join type
  • optional relation hint
  • relation columns
  • one more nested relation level

This builds standard PostgREST select clauses under the hood, for example:

id,name,profile(*),orders!inner(id,total,items(*))

If you need syntax the UI does not cover yet, switch to Raw.

Installation

In n8n UI

Open Settings -> Community Nodes and install:

n8n-nodes-supabase-advanced

Manual install

Install the package in your custom nodes directory:

npm install n8n-nodes-supabase-advanced

Then restart n8n.

Operations Overview

Row

  • create rows from mapped fields or JSON payload
  • fetch one or many rows
  • update or delete rows by filter
  • upsert rows with optional conflict target
  • return related records through relation builder or raw select

Function

  • call Supabase Postgres functions via /rest/v1/rpc/<function>

Custom API Call

  • send direct requests to /rest/v1
  • useful when Supabase adds a capability before the node UI supports it

Known Limitations

  • relation builder does not yet auto-discover foreign key graphs
  • relation names and hints may still need to be provided manually for ambiguous joins
  • deeply custom PostgREST expressions are still easier in Raw mode

Development

npm install
npm run lint
npm run build
npm run check:package

Publishing

Before publishing:

  1. create the GitHub repository referenced in package.json if it does not exist yet
  2. verify the package name is still available on npm
  3. run npm run check
  4. run npm run check:package
  5. publish with npm publish --access public

License

MIT