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

v1.3.1

Published

n8n community nodes for SeggWat feedback and rating management

Readme

n8n-nodes-seggwat

CI npm version npm downloads

This is an n8n community node package for SeggWat - a feedback collection platform for product teams.

Features

This package provides a unified SeggWat node for managing all SeggWat data within n8n workflows:

Feedback Resource

Manage feedback in your SeggWat projects:

  • Submit - Create new feedback entries
  • List - Get paginated feedback with filters (status, type, search)
  • Get - Retrieve a single feedback item by ID
  • Update - Modify feedback message, type, or status
  • Delete - Soft-delete feedback items

Rating Resource

Manage page ratings (thumbs up/down) in your SeggWat projects:

  • Submit - Create new rating entries
  • List - Get paginated ratings with filters (value, path)
  • Get - Retrieve a single rating by ID
  • Get Statistics - Get rating statistics (total, helpful, not helpful, percentage)
  • Delete - Soft-delete rating items

Installation

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-seggwat in the npm package name field
  4. Accept the risks and click Install

Manual Installation

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

Then restart n8n.

Credentials

To use this node, you need to set up SeggWat API credentials:

  1. Log into your SeggWat dashboard
  2. Navigate to Settings > API Keys
  3. Create a new Organization Access Token
  4. In n8n, go to Credentials > New Credential > SeggWat API
  5. Enter your API Key and API URL (default: https://seggwat.com)

Usage Examples

Example 1: Auto-Triage Feedback

Automatically categorize incoming feedback based on keywords:

Webhook (new feedback) → SeggWat (Get Feedback) → Switch (keywords) → SeggWat (Update Feedback) → Slack

Example 2: Low Rating Alert

Monitor for negative rating spikes:

Schedule (hourly) → SeggWat (List Ratings, value=false) → IF (count > 10) → SeggWat (Get Statistics) → Email Alert

Example 3: Weekly Feedback Report

Generate weekly summary reports:

Schedule (Monday 9am) → SeggWat (List Feedback, return all) → Code (aggregate) → SeggWat (Get Statistics) → Email Report

Operations Reference

Feedback Operations

| Operation | Endpoint | Description | |-----------|----------|-------------| | Submit | POST /api/v1/projects/{id}/feedback | Create feedback | | List | GET /api/v1/projects/{id}/feedback | List with pagination | | Get | GET /api/v1/projects/{id}/feedback/{id} | Get single item | | Update | PATCH /api/v1/projects/{id}/feedback/{id} | Update fields | | Delete | DELETE /api/v1/projects/{id}/feedback/{id} | Soft-delete |

Rating Operations

| Operation | Endpoint | Description | |-----------|----------|-------------| | Submit | POST /api/v1/projects/{id}/ratings | Create rating | | List | GET /api/v1/projects/{id}/ratings | List with pagination | | Get | GET /api/v1/projects/{id}/ratings/{id} | Get single item | | Get Statistics | GET /api/v1/projects/{id}/ratings/stats | Get stats | | Delete | DELETE /api/v1/projects/{id}/ratings/{id} | Soft-delete |

Development

Prerequisites

  • Node.js 18+
  • pnpm (recommended) or npm

Setup

# Clone the repository
git clone https://github.com/seggwat/n8n-nodes-seggwat.git
cd n8n-nodes-seggwat

# Install dependencies
pnpm install

# Build
pnpm build

# Link for local n8n development
pnpm link

Testing Locally

  1. Build the package: pnpm build
  2. Link to n8n: cd ~/.n8n/nodes && pnpm link n8n-nodes-seggwat
  3. Restart n8n
  4. The SeggWat node should appear in the nodes panel

Publishing

Publishing is automated via GitHub Actions. To release a new version:

# Update version and create git tag
pnpm version patch  # or minor/major

# Push changes and tags to trigger automated release
git push --follow-tags

The CI/CD pipeline will automatically:

  • Run linting and build validation
  • Publish to npm with provenance attestation
  • Create a GitHub Release with release notes

Feedback Types

  • Bug - Bug report
  • Feature - Feature request
  • Praise - Positive feedback
  • Question - User question
  • Improvement - Improvement suggestion
  • Other - General feedback

Feedback Statuses

  • New - Newly submitted (default)
  • Active - Being worked on
  • Assigned - Assigned to team member
  • Hold - On hold
  • Closed - Closed without resolution
  • Resolved - Completed/resolved

Resources

License

MIT License - see LICENSE for details.

Support