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

@thearinexgroup/n8n-nodes-pipedrive

v1.2.0

Published

N8N module for interacting with the Pipedrive API (v1 and v2)

Readme

n8n-nodes-pipedrive

npm version License: MIT

An n8n community node for interacting with the Pipedrive API v1 and v2.

Features

  • Complete coverage of all Pipedrive API endpoints for both v1 and v2
  • Support for all CRUD operations (Create, Read, Update, Delete)
  • Pagination support for list operations
  • Proper error handling and type safety
  • Full TypeScript implementation

Installation

npm install n8n-nodes-pipedrive

Credentials

To use this node, you need to configure your Pipedrive API credentials:

  1. API Token: Generate from Pipedrive application: Settings → Personal → API → Your personal API token
  2. Base URL: Optional, defaults to the appropriate Pipedrive API endpoint

Usage

  1. Add the Pipedrive node (v1 or v2) to your workflow
  2. Configure your credentials
  3. Select a resource (e.g., Deals, Persons, Organizations)
  4. Choose an operation (Get, Get Many, Create, Update, Delete)
  5. Configure the operation-specific parameters

Supported Resources

This node supports all Pipedrive API resources including:

v1 API

  • Activities
  • Deals
  • Persons
  • Organizations
  • Products
  • Leads
  • Notes
  • Files
  • Webhooks
  • And many more...

v2 API

  • Activities
  • Deals
  • Persons
  • Organizations
  • Products
  • Leads
  • Stages
  • Pipelines
  • Users
  • And more...

Development

Prerequisites

  • Node.js >= 18.17.0
  • npm
  • Python 3 (for generation script)

Setup

npm install

Build

npm run build

Generate from OpenAPI Specs

First, download the OpenAPI specifications:

curl -s https://developers.pipedrive.com/docs/api/v1/openapi.yaml -o /tmp/pipedrive-v1.yaml
curl -s https://developers.pipedrive.com/docs/api/v1/openapi-v2.yaml -o /tmp/pipedrive-v2.yaml

Then run the generation script:

python3 scripts/generate-from-openapi.py

Or use npm:

npm run generate

This will:

  1. Parse the OpenAPI specifications
  2. Generate action modules for both v1 and v2 APIs
  3. Update the node files with imports

The script will create action modules in:

  • nodes/PipedriveV1/actions/ for v1 API
  • nodes/PipedriveV2/actions/ for v2 API

Lint

npm run lint

Test

npm test

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.