UNPKG

n8n-nodes-proxmox

Version:

n8n community node for Proxmox Virtual Environment (VE) API integration with VM, container, storage, and cluster management capabilities

13 lines (10 loc) 423 B
// n8n-nodes-proxmox community node entry point // This file exports the node for n8n to discover try { // Try to load the compiled version first module.exports = require('./nodes/ProxMox/ProxMox.node.js'); } catch (e) { // Fallback: load TypeScript directly (requires ts-node in n8n) console.log('Loading ProxMox node from TypeScript source...'); module.exports = require('./nodes/ProxMox/ProxMox.node.ts'); }