* Initialize nodes
()
| 24 | * Initialize nodes |
| 25 | */ |
| 26 | private async initializeNodes() { |
| 27 | const packagePath = getNodeModulesPackagePath('flowise-components') |
| 28 | const nodesPath = path.join(packagePath, 'dist', 'nodes') |
| 29 | const nodes = await this.loadNodesFromDir(nodesPath) |
| 30 | Object.assign(this.componentNodes, nodes) |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Load and filter nodes from a directory. |
no test coverage detected