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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-beagle-security

v0.3.0

Published

n8n community node for Beagle Security API integration

Readme

n8n-nodes-beagle-security

This is an n8n community node that allows you to interact with Beagle Security API for automated vulnerability scanning and security testing.

Beagle Security is a web application and API security testing platform that helps identify vulnerabilities in your applications.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes in your n8n instance
  2. Select Install
  3. Enter n8n-nodes-beagle-security as the package name
  4. Click Install

Manual Installation

To get started:

npm install n8n-nodes-beagle-security

Or install it globally:

npm install -g n8n-nodes-beagle-security

Development

Project Structure

  • src/ - TypeScript source code
  • credentials/ - Built credential files (auto-generated)
  • nodes/ - Built node files (auto-generated)
  • docker/ - Docker configurations
  • scripts/ - Build and deployment scripts

Building

npm run build       # Build TypeScript to JavaScript
npm run lint        # Check code quality
npm run format      # Format code

Credentials

You need to configure your Beagle Security API credentials:

  1. Go to Settings > Credentials in n8n
  2. Click Add Credential
  3. Search for "Beagle Security API"
  4. Enter your Beagle Security API token

Getting Your API Token

  1. Log in to your Beagle Security dashboard
  2. Go to Settings > API Keys
  3. Generate a new API token
  4. Copy the token and use it in your n8n credentials

Supported Operations

Projects

  • Create - Create a new project
  • Get All - Retrieve all projects
  • Update - Update an existing project
  • Delete - Delete a project

Applications

  • Create - Create a new application in a project
  • Get - Get application details
  • Get All - Get all applications in a project
  • Update - Update an existing application
  • Delete - Delete an application
  • Verify Domain - Verify domain ownership

Tests

  • Start - Start a security test on an application
  • Stop - Stop a running test
  • Get Status - Get the status of a running test
  • Get Result - Get test results
  • Get Sessions - Get test sessions for an application
  • Get Running Tests - Get all currently running tests

Example Usage

Start a Security Test

  1. Add a Beagle Security node to your workflow
  2. Set Resource to "Test"
  3. Set Operation to "Start"
  4. Configure Application Token (you can get this from your Beagle Security dashboard)
  5. Execute the workflow

Get Test Results

  1. Add another Beagle Security node
  2. Set Resource to "Test"
  3. Set Operation to "Get Result"
  4. Use the Application Token and Result Token from the previous step
  5. Execute to get detailed vulnerability report

Resources

License

MIT