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

v0.1.2

Published

n8n community node for Placet — the open-source Human-in-the-Loop platform

Readme


Nodes

| Node | Description | | ------------------ | ------------------------------------------------------------------------------------------------------------------------- | | Placet | Send messages, request approvals / selections / forms / text input / plugin reviews, manage files, and check agent status | | Placet Trigger | Poll for new messages in a channel (polling trigger) |

Installation

Follow the installation guide in the n8n community nodes documentation.

Manual

cd ~/.n8n/nodes
npm install n8n-nodes-placet

Then restart n8n.

Credentials

  1. Open your Placet dashboard → Settings → API Keys
  2. Create a new API key (starts with hp_)
  3. In n8n, go to Credentials → New → Placet API
  4. Enter your API Key and Base URL (e.g. https://placet.example.com)

Operations

Message

| Operation | Description | | ------------------------- | -------------------------------------------------------------------------- | | Send | Send a text message to a channel | | Request Approval | Send approval buttons (Approve / Reject or custom) and wait for a response | | Request Selection | Send a selection list (single or multi-select) and wait | | Request Form | Send a dynamic form with typed fields and wait | | Request Text Input | Send a free-form text / markdown input and wait | | Request Plugin Review | Send a plugin-based review with dynamically loaded fields and wait | | Get | Get a message by ID | | Get Many | List messages in a channel | | Delete | Delete a message |

Review

| Operation | Description | | --------------- | -------------------------- | | Get Pending | List all pending reviews | | Get | Get a review by message ID |

File

| Operation | Description | | ------------ | -------------------------------- | | Upload | Upload a file (from binary data) | | Download | Download a file as binary data | | Get Many | List uploaded files |

Agent Status

| Operation | Description | | --------- | --------------------------------------- | | Ping | Send a heartbeat to report agent status |

Key Features

⏸️ Wait for Response (Webhook-based)

Review operations use n8n's native send-and-wait mechanism (putExecutionToWait). When "Wait for Response" is enabled, the node:

  1. Sets a webhookUrl on the Placet message
  2. Suspends the workflow execution
  3. Resumes automatically when the human responds (Placet calls the webhook)

No long-polling, no wasted executions — the workflow simply pauses and picks up where it left off.

🔌 Plugin Reviews with Dynamic Fields

The Request Plugin Review operation uses n8n's resourceLocator and resourceMapper to:

  • Discover plugins — Fetches installed plugins from the Placet API (GET /api/v1/plugins)
  • Load field schemas — Reads the plugin's inputSchema (JSON Schema) and maps it to n8n form fields dynamically

Select a plugin from the dropdown, and the input fields appear automatically based on its schema — including enum values as dropdown options.

🔀 Simple vs Custom JSON Mode

All review operations support two input modes:

  • Simple — Use the built-in UI fields to configure options, form fields, etc.
  • Custom JSON — Provide the full review payload as raw JSON for maximum flexibility

🤖 AI Agent Support

Both nodes have usableAsTool: true, so they can be used as tools inside n8n's AI Agent node.

Resources

Development

npm install
npm run build
npm run dev    # auto-rebuild
npm run lint

License

MIT