UNPKG

n8n-nodes-customssh

Version:

n8n community node for advanced SSH connections with configurable ciphers and network device support

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