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

@linkorb/n8n-nodes-nebula

v1.2.0

Published

n8n nodes for Nebula - Human-in-the-Loop (HITL) requests with configurable REST API backend

Readme

n8n-nodes-nebula

A collection of custom n8n nodes for integrating with Nebula - enabling Human-in-the-Loop (HITL) workflows, action execution, and webhook-based triggers.

Nodes

| Node | Description | |------|-------------| | Nebula HITL Request | Create human approval/input requests that pause workflow execution until a human responds | | Nebula Action | Execute Nebula Actions via the Nebula API | | Nebula Trigger | Webhook-based trigger that starts workflows with Survey.js form data |

Credentials

| Credential | Description | |------------|-------------| | Nebula API | Authentication for outbound requests to Nebula | | Nebula Trigger Auth | Authentication for incoming webhook requests |

See the credentials documentation for setup instructions.

Installation

Prerequisites

  • n8n version 1.0.0 or later
  • Node.js 18.10 or later
  • pnpm (recommended) or npm

Install via npm (Community Nodes)

In your n8n instance, go to Settings → Community Nodes and install:

n8n-nodes-nebula

Manual Installation (Self-hosted n8n)

  1. Clone or download this repository:
cd ~/.n8n/custom
git clone https://github.com/linkorb/n8n-nodes-nebula.git
cd n8n-nodes-nebula
  1. Install dependencies:
pnpm install
  1. Build the node:
pnpm build
  1. Restart n8n:
# If running n8n directly
n8n start

# If running via PM2
pm2 restart n8n

# If running via Docker
docker restart n8n

Installation with Docker

If you're running n8n in Docker, you can mount the custom nodes:

version: '3.8'
services:
  n8n:
    image: n8nio/n8n
    volumes:
      - ~/.n8n:/home/node/.n8n
      - ./n8n-nodes-nebula:/home/node/.n8n/custom/n8n-nodes-nebula
    environment:
      - N8N_CUSTOM_EXTENSIONS=/home/node/.n8n/custom

Quick Start

1. Set Up Credentials

  1. In n8n, go to Credentials → Add Credential
  2. Search for "Nebula API" and configure your Nebula instance connection
  3. See credentials documentation for details

2. Use a Node

Development

Project Structure

n8n-nodes-nebula/
├── credentials/
│   ├── NebulaApi.credentials.ts      # Outbound API authentication
│   ├── NebulaTriggerAuth.credentials.ts  # Inbound webhook authentication
│   └── README.md                     # Credentials documentation
├── nodes/
│   ├── NebulaAction/                 # Execute Nebula actions
│   ├── NebulaHitlRequest/            # Human-in-the-loop requests
│   ├── NebulaTrigger/                # Webhook trigger with forms
│   └── README.md                     # Nodes overview
├── package.json
├── tsconfig.json
└── README.md

Building from Source

# Install dependencies
pnpm install

# Build
pnpm build

# Watch mode (for development)
pnpm dev

# Lint
pnpm lint

# Format
pnpm format

Troubleshooting

Node not appearing in n8n

  1. Ensure the build completed successfully (pnpm build)
  2. Check that the dist folder contains compiled JS files
  3. Verify the custom nodes path in n8n configuration
  4. Restart n8n completely

Authentication errors

  1. Verify credentials in n8n are correct
  2. Check your backend's authentication logic
  3. Look at the backend logs for more details

Contributing

Contributions are welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Submit a pull request

License

MIT License - see LICENSE file for details.

Related Projects

Support

  • Create an issue on GitHub for bug reports
  • Discussions for questions and feature requests