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-5day

v0.1.3

Published

n8n community node for 5day.io project management — manage projects, tasks, subtasks, comments, and users directly from your n8n workflows.

Readme

n8n-nodes-5day

An n8n community node that integrates 5day.io with n8n workflows.

This node allows you to automate project management tasks such as creating projects, managing tasks and subtasks, posting comments, managing tags, and retrieving users directly inside your n8n automations.

5day.io is a minimalist project management tool that helps teams plan, track, and finish work without the noise.

Supported Resources & Operations

| Resource | Operations | | ------------- | --------------------------------------------------- | | Project | Create, Delete, Get, Get Many, Update | | Task | Create, Delete, Get, Get Many, Move, Search, Update | | Subtask | Create, Get Many | | Task Comment | Create, Delete | | Task Tag | Add Tag, Remove Tag | | User | Get, Get Many |

Authentication

This node uses OAuth2 (Authorization Code flow) to authenticate with the 5day API.

You will need the following credentials from your 5day account:

  • Client ID
  • Client Secret

Setup Steps

  1. Log in to your 5day.io account.
  2. Navigate to:

My Settings -> Integration Center -> Automation -> n8n

  1. Generate your Client ID and Client Secret.
  2. Open n8n and create a new credential of type:

5day OAuth2 API

  1. Enter your Client ID and Client Secret.
  2. Complete the OAuth authorization process.

After authentication, the credential can be reused across multiple workflows.

Installation

n8n Cloud / Self-hosted via GUI

  1. Open n8n.
  2. Go to Settings → Community Nodes.
  3. Click Install a community node.
  4. Enter the package name:

n8n-nodes-5day

  1. Click Install.

Install via npm (Self-hosted)

If you are running a self-hosted n8n instance:

npm install n8n-nodes-5day

Restart your n8n instance after installation.

Usage

Project — Create

Creates a new project in a workspace.

Required fields: Workspace, Project Name

Optional fields: Space, Description, Budget Type, Start Date, End Date, Priority, Status, Client, Progress, Prefix

Project — Delete

Deletes an existing project.

Required fields: Project

Project — Get

Retrieves a single project by ID.

Required fields: Project

Project — Get Many

Retrieves multiple projects within a workspace.

Optional filters: Space

Supports: Return All (auto-pagination) or limit by count.

Project — Update

Updates an existing project.

Required fields: Workspace, Project

Optional fields: Name, Description, Budget Type, Start Date, End Date, Priority, Status, Client, Progress, Prefix

Task — Create

Creates a new task within a project.

Required fields: Project, Work Item Type, Task Name

Optional fields: Section, Assignees, Description, Start Date, Due Date, Priority, Status, Tags, Story Point, Estimation, Linked Tasks, Custom Fields

Task — Delete

Deletes an existing task.

Required fields: Task ID

Task — Get

Retrieves a single task by ID.

Required fields: Task ID

Task — Get Many

Retrieves tasks from a project.

Optional filters: Section

Supports: Return All or limit by count.

Task — Move

Moves a task to a different project or section.

Required fields: Task ID, Project, Section

Task — Search

Search for tasks using full-text search.

Supports: Return All or limit by count.

Task — Update

Updates an existing task.

Required fields: Task ID, Project

Optional fields: Name, Work Item Type, Section, Assignees, Description, Start Date, Due Date, Priority, Status, Tags, Story Point, Estimation, Linked Tasks, Custom Fields

Subtask — Create

Creates a subtask under an existing parent task.

Required fields: Project, Work Item Type, Parent Task, Subtask Name

Optional fields: Section, Assignees, Description, Start Date, Due Date, Priority, Status, Tags, Story Point, Estimation, Linked Tasks, Custom Fields

Subtask — Get Many

Retrieves all subtasks under a parent task.

Task Comment — Create

Adds a comment to a task.

Required fields: Project, Task, Comment Message

Task Comment — Delete

Removes a comment from a task.

Required fields: Comment ID

Task Tag — Add Tag

Adds one or more tags to a task.

Required fields: Task ID, Project, Tags

Task Tag — Remove Tag

Removes one or more tags from a task.

Required fields: Task ID, Project, Tags

User — Get

Retrieves a single user by ID.

Required fields: User ID

User — Get Many

Retrieves users.

Optional filters: Workspace, Project

Compatibility

  • n8n version: 1.0 or newer
  • Node.js version: 18+

License

This project is licensed under the MIT License.