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

v0.1.7

Published

n8n community node for LeadGrid.io — one API for two pipelines (sales + recruitment).

Readme

n8n-nodes-leadgrid

An n8n community node for LeadGrid.io — one API for two pipelines (sales leads and recruitment candidates in the same grid).

Installation

n8n Cloud

  1. Settings → Community Nodes → Install
  2. Enter n8n-nodes-leadgrid
  3. Confirm and reload

Self-hosted

npm install n8n-nodes-leadgrid

Or, in your n8n instance: Settings → Community Nodes → Install → n8n-nodes-leadgrid.

Credentials

Create a LeadGrid API key under Settings → API in your LeadGrid workspace (Growth plan required), then in n8n:

  1. Credentials → New → LeadGrid API
  2. Paste your lg_live_… key
  3. Leave Base URL as https://leadgrid.io unless you're on self-hosted or staging

The credential is tested against GET /api/v1/flows when saved. A 200 means you're good; 401 means the key is wrong; 403 means your workspace isn't on the Growth plan.

Resources and operations

Dossier (sales lead or recruitment candidate)

| Operation | HTTP | Notes | |---|---|---| | Create | POST /dossiers | Optionally attaches a PDF CV in the same call; if the upload fails, the dossier is rolled back. | | Get | GET /dossiers/{id} | | | Get Many | GET /dossiers | Filter by type / status / stage_id, with pagination. | | Update | PATCH /dossiers/{id} | Move stages, change status, update contact fields. | | Archive | DELETE /dossiers/{id} | Soft-delete (sets status to archived). | | Upload CV | POST /dossiers/{id}/cv | Attach a PDF to an existing dossier. |

Note

| Operation | HTTP | |---|---| | Add | POST /dossiers/{id}/notes | | Get Many | GET /dossiers/{id}/notes |

Flow

| Operation | HTTP | |---|---| | Get Many | GET /flows | | Get Stages | GET /flows/{id}/stages |

Common patterns

Intake form → candidate with CV

Webhook → LeadGrid (Create dossier, type=candidate, Attach CV=true). One atomic call, dossier + CV together.

CV parsing pipeline → move stage

When your parser finishes, LeadGrid (Update dossier) with current_stage_id set. This fires a dossier.stage_changed webhook event back to any other subscriber.

Sync to your warehouse

Schedule Trigger → LeadGrid (Get Many dossiers, type=sales, status=won) → Postgres / BigQuery insert.

License

MIT — see LICENSE.