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-nocodb-custom

v0.1.70

Published

n8n community node for NocoDB (records, links, actions, attachments)

Readme

🚀 n8n Custom NocoDB Node

A custom n8n node for working with NocoDB — built to be actually pleasant to use.

  • No manual query strings.
  • No guessing field names.
  • No unreadable relation payloads.

Just a proper UI-driven experience, the way it should’ve been from the start.


🤖 AI Tool node is supported


✨ Supported Operations

  • Create row

  • Delete row

  • Update row

  • Get row

  • List rows

  • Count rows


🤔 Why Another NocoDB Node?

The official NocoDB node works, but once you go beyond the basics, things get painful fast.

This custom node focuses on:

  • Developer Experience

  • Readable data

  • UI-first configuration

  • Scalability for real workflows


🔍 Filtering: Official Node vs This Node

❌ Official n8n NocoDB Node

Filtering for Get row / Get rows is done by manually typing query parameters:

where=(field1,eq,value1)~and(field2,eq,value2)
  • Error-prone

  • Hard to read

  • Hard to automate

  • Hard to maintain

  • No visual structure

Honestly… not great.


✅ This Custom Node

Filtering for Get row, List rows, and Count rows is done entirely through the UI.

You can:

  • Add multiple filter groups

  • Choose AND / OR logic per group

  • Combine conditions visually

  • Actually understand what you’re building


🔗 Handling Relation (Link) Fields

❌ Official Node Output (Link fields)

The official node returns deeply nested, noisy structures:

{
  "Id": 1,
  "CreatedAt": "2026-01-30 15:29:56+00:00",
  "UpdatedAt": "2026-01-30 15:38:02+00:00",
  "Title": "Not test",
  "Some field": 1,
  "_nc_m2m_Collections_Products": [
    {
      "Products_id": 11,
      "Collections_id": 1,
      "Products": {
        "Collections": 1,
        "Id": 11,
        "CreatedAt": "2026-01-30 15:37:33+00:00",
        "UpdatedAt": "2026-01-30 15:37:33+00:00",
        "Title": "Test"
      }
    }
  ]
}

✅ This Custom Node Output

For Get row and Get all, there’s an additional option:

Expand Relations (default: false)

  • If disabled → relation fields return only linked IDs

  • If enabled → relations are expanded in a clean, predictable structure

{
  "id": 1,
  "fields": {
    "CreatedAt": "2026-01-30 15:29:56+00:00",
    "UpdatedAt": "2026-01-30 15:38:02+00:00",
    "Title": "Not test",
    "Some field": [
      {
        "id": 11,
        "fields": {
          "Title": "Test"
        }
      }
    ]
  }
}

⚠️ Note: Relation handling will be improved further in future versions.


🎯 Selecting Returned Fields

❌ Official Node

You must manually type field names, separated by commas.

  • Typos happen

  • No autocomplete

  • No validation


✅ This Custom Node

  • Field selection via UI dropdown

  • All available fields are loaded dynamically

  • No guessing, no mistakes


📄 Pagination Support

❌ Official Node

  • ❌ No pagination support for Get all

✅ This Custom Node

  • ✅ Pagination supported via Page option

  • Available for List rows

Perfect for large datasets and production workflows.


🧠 Summary

| Feature | Official Node | This Node | | --- | --- | --- | | UI-based filtering | ❌ | ✅ | | Filter groups (AND / OR) | ❌ | ✅ | | Clean relation output | ❌ | ✅ | | Expand relations toggle | ❌ | ✅ | | Dynamic field selection | ❌ | ✅ | | Pagination | ❌ | ✅ |


🔥 Who Is This For?

  • n8n users working seriously with NocoDB

  • Anyone tired of writing query strings by hand

  • Teams that value clean, maintainable workflows

  • Developers who want their automations to scale

  • Prepare a GitHub release description

  • Or make a README badge set 😏

🤝 Need Custom Automation or Integration?

If this node doesn’t fully cover your use case — or you need something tailored specifically to your workflow, I’m open for custom work.

I can help with:

  • Custom n8n nodes for your service

  • Complex n8n automations

  • NocoDB integrations (advanced relations, custom logic, performance tuning)

  • API integrations (internal or external services)

  • Workflow optimization & architecture consulting

Whether it’s a small tweak or a full-blown custom integration, feel free to reach out.

Email: [email protected] Telegram: https://t.me/xcharlesbronsonx