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

@iamprompt/n8n-nodes-grist

v0.1.7

Published

n8n community node for Grist — create, read, update, upsert, and delete records in your Grist spreadsheet-database.

Readme

@iamprompt/n8n-nodes-grist

This is an n8n community node that lets you use Grist in your n8n workflows.

Grist is an open-source, spreadsheet-database hybrid that gives you the flexibility of a spreadsheet with the power of a relational database. This node lets you create, read, update, upsert, and delete records in any Grist document — including self-hosted instances.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Compatibility
Resources
Version history


Installation

Follow the installation guide in the n8n community nodes documentation.

In n8n, go to Settings → Community Nodes → Install and enter:

@iamprompt/n8n-nodes-grist

Operations

Resource: Record

| Operation | Description | |-----------|-------------| | Get Many | Fetch records from a table, with optional filters, sorting, and a result limit | | Create | Add new records to a table | | Update | Modify existing records by row ID | | Upsert | Add or update records by matching on one or more columns (where + fields) | | Delete | Remove records by row ID |


Credentials

This node uses the Grist API (Enhanced) credential, which requires:

| Field | Description | |-------|-------------| | URL | Full URL of your Grist instance, e.g. https://docs.getgrist.com or http://localhost:8484 — no trailing slash, no /api suffix | | API Key | Your personal Grist API key — find it under Profile Settings → API in Grist |

Getting your API key

  1. Log in to your Grist instance.
  2. Click your avatar (top-right) → Profile Settings.
  3. Scroll to the API section and copy your key.

The credential is tested automatically against GET /api/orgs.


Compatibility

  • Tested with n8n ≥ 1.x
  • Works with both Grist Cloud (docs.getgrist.com) and self-hosted Grist instances
  • Requires Grist API version that supports /docs/{docId}/tables/{tableId}/records

Usage

Selecting a document

Each operation requires you to select an Organization → Workspace → Document → Table using dynamic dropdowns. These are resolved from your Grist instance via the API.

Get Many — Filtering

The filter option accepts a Grist filter object as a JSON string, for example:

{"Status": ["Active", "Pending"]}

The sort option accepts a comma-separated list of column IDs, optionally prefixed with - for descending order:

-CreatedAt,Name

Upsert — Record format

The Upsert operation accepts a JSON array where each entry has:

[
  {
    "where": { "Email": "[email protected]" },
    "fields": { "Name": "Alice", "Status": "Active" }
  }
]
  • where — columns used to match existing rows
  • fields — values to set (on match or new insert)

Delete — Row IDs

Provide a comma-separated list of numeric row IDs to delete, e.g. 1,2,3.


Resources


Version history

0.1.0

Initial release with full Record resource support:

  • Get Many (with filter, sort, limit)
  • Create
  • Update
  • Upsert (with onmany, noadd, noupdate options)
  • Delete

Supports self-hosted and Grist Cloud instances via dynamic org/workspace/document/table selection.


License

MIT