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

v0.1.2

Published

n8n nodes for the Veeam Data Platform

Readme

n8n Custom Integration for the Veeam Data Platform

This custom n8n integration provides n8n nodes that use a custom credential configuration to generate Bearer tokens via the Password Grant method for Veeam Backup & Replication and Veeam ONE REST APIs.

Features

  • Custom Credential Type
    • Stores the Veeam Backup & Replication or the Veeam ONE REST API endpoint, API Revision level, authentication details, and SSL validation options
  • OAuth Token Node
    • Handles the Bearer token creation and passes the token and other details for further usage
  • Seamless Integration
    • Generated Bearer token and API details are accessible in HTTP Request nodes

Installation

  1. Install the npm package
  2. Set the environment variable to the custom extensions path:

export N8N_CUSTOM_EXTENSIONS=

~/.n8n/custom/
├── credentials/
│   ├── VeeamDataPlatform.credentials.js
│   └── VeeamDataPlatform.credentials.png
└── nodes/
   └── VeeamToken.node.js
   └── VeeamONEToken.node.js
   └── bearer.png
  1. Restart Restart n8n to load the custom node.

Credentials

  1. In n8n, create a new credential of type “Veeam Data Platofrm” alt text

  2. Configure the following fields: alt text

    • Give the credential a name that refers to your endpoint (top left corner)
    • URL: Your Veeam B&R server endpoint (e.g., https://vbr-server:9419 - Veeam ONE https://vone-server:1239)
    • API Version: API version (e.g., 1.3-rev1 for Veeam Backup & Replication or v2.3 for Veeeam ONE)
    • Username: Your username
    • Password: Your password
    • Ignore SSL Errors: Enable for self-signed certificates
  3. Create a new workflow

  4. Add the "Veeam Get Access Token" or "Veeam ONE get Access Token" node to your workflow alt text

  5. Select your configured credential and click 'Execute step' to check if a Bearer token can be retrieved alt text

  6. The node will output the access token, URL, and API version for use in the follwing nodes.

Operations

Access the generated values in HTTP Request nodes using:

  • {{$json.access_token}} // Bearer token
  • {{$json.url}} // API base URL
  • {{$json.apiVersion}} // API version

Sample Workflows

See here

Compatibility

n8h self-hosting setup only Tested with n8n version 2.7.5

Disclaimer

This integration and workflows are not officially supported by Veeam Software. Use it at your own risk.