409e92d6ae
Build and Push Docker Images / Build Docker Image (push) Has been cancelled
Build and Push Docker Images / Build Railway Docker Image (push) Has been cancelled
Build and Publish n8n Docker Image / test-image (push) Has been cancelled
Dependency Compatibility Check / Fresh Install Dependency Check (push) Has been cancelled
Build and Publish n8n Docker Image / build-and-push (push) Has been cancelled
Build and Publish n8n Docker Image / create-release (push) Has been cancelled
Automated Release / Detect Version Change (push) Has been cancelled
Automated Release / Generate Release Notes (push) Has been cancelled
Automated Release / Create GitHub Release (push) Has been cancelled
Automated Release / Package MCPB Bundle (push) Has been cancelled
Automated Release / Build and Verify (push) Has been cancelled
Automated Release / Publish to NPM (push) Has been cancelled
Automated Release / Build and Push Docker Images (push) Has been cancelled
Automated Release / Update Documentation (push) Has been cancelled
Automated Release / Notify Release Completion (push) Has been cancelled
Secret Scan / secretlint (push) Has been cancelled
Test Suite / test (push) Has been cancelled
Test Suite / cjs-runtime (push) Has been cancelled
Test Suite / publish-results (push) Has been cancelled
26 lines
633 B
JavaScript
26 lines
633 B
JavaScript
#!/usr/bin/env node
|
|
|
|
const { NodeSourceExtractor } = require('../dist/utils/node-source-extractor');
|
|
|
|
async function testNodeList() {
|
|
console.log('Testing node list...\n');
|
|
|
|
const extractor = new NodeSourceExtractor();
|
|
|
|
try {
|
|
const nodes = await extractor.listAvailableNodes();
|
|
|
|
console.log(`Total nodes found: ${nodes.length}`);
|
|
|
|
// Show first 5 nodes
|
|
console.log('\nFirst 5 nodes:');
|
|
nodes.slice(0, 5).forEach((node, index) => {
|
|
console.log(`${index + 1}. Node:`, JSON.stringify(node, null, 2));
|
|
});
|
|
|
|
} catch (error) {
|
|
console.error('Error:', error);
|
|
}
|
|
}
|
|
|
|
testNodeList(); |