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

v0.1.4

Published

n8n community node for Easy Task (a ClickUp clone) — manage spaces, lists, tasks, members and statuses via the Easy Task REST API.

Readme

n8n-nodes-easytask

An n8n community node for Easy Task — a ClickUp-style task manager. It lets you create and manage tasks, browse spaces and lists, read statuses, and list members from your n8n workflows against the Easy Task REST API (https://task.easyhive.pro/api/v1).

If you already use the ClickUp node in n8n, this node is a near drop-in replacement for the common task operations.

Installation

Community Nodes (recommended)

  1. In n8n, go to Settings > Community Nodes.
  2. Select Install.
  3. Enter the package name n8n-nodes-easytask and confirm.

The package must be published to npm first (npm publish from this directory). Until then, install it manually.

Manual / self-hosted

# inside your n8n custom-nodes directory (e.g. ~/.n8n/custom)
npm install n8n-nodes-easytask

Then restart n8n.

Getting an API key

  1. Open Easy Task and go to Settings > API.
  2. Create a new API key. It looks like et_live_….
  3. Copy it — you will paste it into the n8n credential.

Credential setup

Create an Easy Task API credential in n8n:

| Field | Value | | --- | --- | | API Key | your et_live_… key | | Base URL | https://task.easyhive.pro/api/v1 (default) |

The credential authenticates with Authorization: Bearer <apiKey> and its Test button calls GET /ping, so you get instant confirmation the key works.

Operations

Task

  • Create — in a chosen list, with name plus optional description, status, priority (urgent/high/normal/low), start/due dates (YYYY-MM-DD), assignees (member IDs or emails), tags, and custom fields (JSON).
  • Get — by task UUID or numeric task number.
  • Get Many — from a list, with filters for include_closed, status, and assignee, plus Return All / Limit.
  • Update — any of the create fields via PATCH.
  • Delete — soft-deletes the task.
  • Add Comment — posts a comment on a task.

List

  • Get Many — all lists across every space, flattened and annotated with their parent space/folder.
  • Get Statuses — the statuses available in a chosen list.

Space

  • Get Many — all spaces with their folders and lists.

Member

  • Get Many — all workspace members.

Pickers

Where useful, dropdowns are populated from the API: List (from /spaces), Status (from /statuses?list=), and members can be selected by name — so you pick by name in the UI instead of pasting IDs.

Replacing ClickUp nodes

Easy Task mirrors ClickUp's core model (Spaces > Folders > Lists > Tasks, with statuses, priorities, assignees, tags and comments). To migrate a workflow:

  1. Swap each ClickUp node for an Easy Task node with the matching resource/operation (Task Create/Get/Get Many/Update/Delete, List, etc.).
  2. Point it at the Easy Task API credential.
  3. Re-select the list/status via the dropdowns (IDs differ between systems).

API reference (endpoints used)

  • GET /ping — credential test
  • GET /spaces — spaces tree (folders + lists)
  • GET /members — members
  • GET /statuses?list= — statuses for a list
  • GET /lists/{listId}/tasks — tasks in a list (filters: include_closed, status, assignee)
  • GET /tasks/{taskId} — task detail (UUID or task number)
  • POST /lists/{listId}/tasks — create task
  • PATCH /tasks/{taskId} — update task
  • DELETE /tasks/{taskId} — delete task
  • POST /tasks/{taskId}/comments — add comment

Compatibility

Requires Node.js 18.10+ and a recent n8n. The node is usableAsTool, so it can be attached to an AI Agent as a tool.

License

MIT