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

@rubenlangeweg/n8n-nodes-productive

v0.7.2

Published

n8n node for Productive.io API integration

Readme

n8n-nodes-productive

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

Productive.io is a comprehensive project management and time tracking platform designed for professional services teams.

n8n is a fair-code licensed workflow automation platform.

Table of Contents

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Nodes (Recommended)

Install directly in n8n:

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter @rubenlangeweg/n8n-nodes-productive
  4. Click Install

Manual Installation

To install manually via npm:

npm install @rubenlangeweg/n8n-nodes-productive

Operations

This node supports the Bookings resource, which is used to track time allocations, absences, and project work.

Bookings

  • List: Get all bookings with filtering options
    • Filter by person, project, dates, booking type, approval status
    • Pagination support (return all or limit results)
    • Sort by various fields
  • Get: Retrieve a single booking by ID
    • Option to include related resources (person, project, service, event)
  • Create: Create a new booking
    • Budget bookings (project work allocation)
    • Absence bookings (time off, vacation, sick leave)
    • Three allocation methods: Per Day, Percentage, Total Hours
  • Update: Update an existing booking
    • Modify dates, times, notes, and other attributes
  • Delete: Remove a booking

Credentials

To use this node, you need:

  1. API Token: Generate in Productive.io

    • Log into Productive.io
    • Go to Settings > Integrations > API
    • Generate a new API token
  2. Organization ID: Found in your Productive.io URL

    • When logged in, your URL looks like: https://app.productive.io/1234-org
    • The number before -org is your Organization ID

Usage

Basic Example: List Bookings

  1. Add a Productive node to your workflow
  2. Connect your Productive.io credentials
  3. Select Resource: Booking
  4. Select Operation: List
  5. (Optional) Add filters in Additional Fields:
    • Person IDs
    • Date range (After/Before)
    • Booking Type (Budget/Absence)
    • Project IDs

Create an Absence Booking

  1. Select Operation: Create
  2. Enter required fields:
    • Person ID: The employee taking time off
    • Started On: First day of absence
    • Ended On: Last day of absence
    • Booking Method: Choose "Per Day"
    • Booking Type: Choose "Absence (Event)"
    • Event ID: The type of absence (vacation, sick leave, etc.)
    • Time (Minutes per Day): 480 for full day (8 hours)

Use Case: Detect On-Call Schedule Conflicts

Combine with the incident.io node to detect conflicts between scheduled absences and on-call duties:

  1. Productive Node: List bookings filtered by person and date range
  2. incident.io Node: Get on-call schedule entries for the same period
  3. Compare: Check if anyone is scheduled on-call during their absence
  4. Alert: Send notification if conflicts are found

Rate Limits

Productive.io API has the following rate limits:

  • 100 requests per 10 seconds
  • 4000 requests per 30 minutes

The node does not implement automatic rate limiting, so be mindful when making bulk requests.

API Version

This node uses the Productive.io API v2.

Base URL: https://api.productive.io/api/v2

API follows the JSON:API specification.

Resources

Version History

0.1.0

Initial release with Bookings resource support:

  • List, Get, Create, Update, Delete operations
  • Comprehensive filtering and sorting
  • Support for both budget and absence bookings
  • Three booking methods (Per Day, Percentage, Total Hours)
  • Pagination support

License

MIT

Author

Ruben Langeweg

Contributing

Issues and pull requests are welcome on GitHub.


Generated with Claude Code