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

@erudika/n8n-nodes-scoold

v0.3.2

Published

n8n community node for Scoold — search extraction and webhook-based event triggers

Downloads

24

Readme

n8n-nodes-scoold

An n8n community node package that integrates Scoold — the open-source Q&A platform — with your n8n workflows.

Follow the documentation to get started with the Scoold nodes for n8n.

Nodes

Scoold Trigger

Starts a workflow whenever a Scoold event occurs (e.g. a new question, answer, or comment).

On activation the node automatically registers a webhook in your Scoold instance pointing at the n8n webhook URL. On deactivation it removes the webhook.

Supported events (loaded dynamically from /api/events):

| Event | Description | |-------|-------------| | question.create | A new question was posted | | answer.create | A new answer was posted | | comment.create | A new comment was posted | | answer.accept | An answer was accepted as the solution | | answer.approve | An answer was approved | | report.create | A new report was submitted | | question.close | A question was closed | | question.approve | A question was approved | | user.signup | A user signed up | | user.signin | A user signed in | | and more… | |

Each event emits one n8n item per object in the payload, enriched with a _scoold metadata field:

{
  "_scoold": {
    "event": "question.create",
    "timestamp": 1711234567890,
    "appid": "app:myapp",
    "webhookId": "abc123"
  }
}

Parameters:

  • Events — which events to subscribe to (multi-select, defaults to the six most common)
  • Property Filter (optional) — filter events by object property, e.g. space:general

Scoold

Action node for extracting data through Scoold's search API.

Resource: Search — Operation: Query

Searches for Scoold objects by type and full-text query string.

Parameters:

| Parameter | Description | |-----------|-------------| | Type | Object type: question, answer, user, profile, comment, report, revision, badge, feedback | | Query | Full-text search string | | Return All | Fetch all pages automatically via cursor pagination | | Limit | Max results per page (when Return All is off) | | Page | Page number to fetch (when Return All is off) | | Sort By | Field name to sort by (e.g. timestamp, votes) | | Descending | Sort in descending order (default: true) | | Split Out Items | Emit one item per result (default) or one item with the full search envelope |

Output when Split Out Items = false:

{
  "items": [...],
  "page": 1,
  "totalHits": 42,
  "lastKey": "..."
}

Credentials

Generating a Scoold API key

  1. Sign in to your Scoold instance as an administrator.
  2. Go to Admin and scroll to the API section.
  3. Generate a new JWT API key and copy it — it is only shown once.

Setting up the credential in n8n

  1. In n8n, go to Credentials → New → Scoold API.
  2. Enter your Base URL (e.g. https://community.example.com) — no trailing slash.
  3. Paste the API Key you generated above.
  4. Click Test — n8n will call /api/stats to confirm the key is valid.

Installation

n8n Cloud / self-hosted (GUI)

Go to Settings → Community Nodes → Install and enter:

n8n-nodes-scoold

Self-hosted (CLI)

npm install n8n-nodes-scoold

Then restart n8n.

Requirements

  • Scoold Pro with webhooks enabled (scoold.webhooks.enabled=true in your config).
  • n8n must be reachable from the Scoold server for webhook delivery.

Resources

Version history

See CHANGELOG.md.

License

MIT License