n8n-nodes-arubacentral
Version:
n8n community node for Aruba Central API integration with comprehensive monitoring, configuration, and management capabilities
13 lines (10 loc) • 453 B
JavaScript
// n8n-nodes-arubacentral 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/ArubaCentral/ArubaCentral.node.js');
} catch (e) {
// Fallback: load TypeScript directly (requires ts-node in n8n)
console.log('Loading ArubaCentral node from TypeScript source...');
module.exports = require('./nodes/ArubaCentral/ArubaCentral.node.ts');
}