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

v0.9.16

Published

n8n community node for OKRunit human-in-the-loop approval gateway

Readme

n8n-nodes-okrunit

OKRunit community node for n8n. Add human-in-the-loop approvals to any n8n workflow.

Pause your automation, wait for a human to approve or reject, then continue. Works with AI agents, deployment pipelines, financial transactions, content publishing, and any workflow that needs human oversight.

Installation

Community Node (recommended)

  1. In n8n, go to Settings > Community Nodes
  2. Enter n8n-nodes-okrunit
  3. Click Install

Manual Installation

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

Then restart n8n.

Setup

Option 1: OAuth2 (recommended)

  1. In n8n, go to Credentials > New Credential > OKRunit OAuth2 API
  2. The Base URL defaults to https://okrunit.com
  3. Click Connect. You'll be redirected to OKRunit to authorize
  4. Grant access and you're connected

Option 2: API Key

  1. In OKRunit, go to Settings > Connections and create a new connection
  2. Copy the API key (starts with gk_, shown only once)
  3. In n8n, create a new OKRunit API credential with your API key

Nodes

OKRunit

The main action node with these operations:

| Resource | Operation | Description | |----------|-----------|-------------| | Approval | Create | Submit a new approval request for human review | | Approval | Get | Fetch an approval request by ID | | Approval | List | Search/filter approval requests | | Comment | Add | Add a comment to an approval request | | Comment | List | List all comments on an approval request |

Create Approval

Required fields:

  • Title - What needs approval (defaults to "Approval request from n8n" if blank)
  • Priority - Low, Medium, High, or Critical

Optional fields (under Additional Fields):

  • Description - Detailed context for the reviewer
  • Action Type - Category like "deploy", "delete", "publish"
  • Callback URL - Webhook URL to receive the decision
  • Metadata - Arbitrary JSON data to attach
  • Expires At - Auto-expire after this datetime
  • Required Approvals - Number of approvals needed (1-10)
  • Context HTML - Rich HTML displayed to approvers

OKRunit Trigger

A polling trigger node that fires on approval events:

| Trigger | Description | |---------|-------------| | New Approval Request | Fires when a new approval is created | | Approval Decided | Fires when an approval is approved or rejected |

Both triggers support optional status and priority filters.

Example: Pause-and-wait pattern

  1. OKRunit node (Create) - creates an approval request with a callback URL
  2. Wait node - pauses the workflow
  3. When someone approves/rejects in OKRunit, the callback resumes your workflow

Alternatively, use the OKRunit Trigger node in a separate workflow to react to decisions.

Resources

License

MIT