Description
n8n-nodes-kroki
This is an n8n community node that lets you use Kroki diagram conversion service in your n8n workflows.
Kroki is a free, open-source diagram service that creates diagrams from textual descriptions. It supports a wide variety of diagram types including Mermaid, PlantUML, GraphViz, D2, DBML, Excalidraw, and many more, converting them to PNG, SVG, or PDF formats.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Compatibility
Usage
Development
Testing
Resources
License
Installation
Follow the installation guide in the n8n community nodes documentation.
- Go to Settings > Community Nodes in your n8n instance
- Select Install and enter
n8n-nodes-kroki - Restart your n8n instance if required
Alternatively, you can install via npm:
npm install n8n-nodes-kroki
Operations
The Kroki node supports diagram conversion with the following operations:
Diagram Conversion
- Convert text-based diagrams to binary image formats (PNG, SVG, PDF)
- 22+ supported diagram types including:
- Mermaid – Flowcharts, sequence diagrams, Gantt charts, etc.
- PlantUML – UML diagrams, sequence diagrams, class diagrams
- GraphViz – Network diagrams, dependency graphs
- D2 – Declarative diagrams with modern styling
- DBML – Database markup language for schema diagrams
- Excalidraw – Hand-drawn style diagrams
- C4 PlantUML – C4 model architecture diagrams
- And many more: ActDiag, BlockDiag, Ditaa, Nomnoml, NwDiag, Pikchr, SeqDiag, Structurizr, Svgbob, TikZ, UMLet, Vega, Vega-Lite, WaveDrom, WireViz
Configuration Options
- Server Selection: Choose between public Kroki service (kroki.io) or custom Kroki server
- Output Formats: PNG (image/png), SVG (image/svg+xml), PDF (application/pdf)
- Timeout Configuration: Adjustable timeout (1-300 seconds) for large diagram processing
- Error Handling: Continue on fail option for robust workflow execution
Compatibility
- Minimum n8n version: 1.0.0
- Node.js version: 20.15 or higher
- Tested with: n8n 1.82.0 and latest stable versions
- TypeScript: Compiled to ES2019 for broad compatibility
Usage
Basic Diagram Conversion
- Add the Kroki node to your workflow
- Select diagram type from the dropdown (e.g., Mermaid, PlantUML)
- Choose output format (PNG, SVG, or PDF)
- Input diagram source as text (can be from previous nodes or manual input)
- Configure server (use default public service or specify custom server)
- Execute – The node outputs binary data that can be saved or processed further
Example: Mermaid Flowchart
graph TD
A[Start] --> B{Is it working?}
B -->|Yes| C[Great!]
B -->|No| D[Debug]
D --> A
Example: PlantUML Sequence Diagram
@startuml
Alice -> Bob: Hello
Bob -> Alice: Hi there
@enduml
Advanced Usage
- Dynamic diagram generation: Use expressions to generate diagrams from workflow data
- Batch processing: Process multiple diagrams in a single workflow
- Integration with other nodes: Combine with file storage, email, or documentation tools
- Custom servers: Use private Kroki instances for enterprise deployments
For more examples and detailed usage instructions, see the docs/designs/use_cases.md file.
Development
This project follows the standard n8n community node development practices with TypeScript and build automation.
Prerequisites
- git
- Node.js and npm (minimum version Node 20.15)
- Install n8n globally:
npm install n8n -g
Setup
-
Clone the repository:
git clone https://github.com/RustedVikingOG/n8n-nodes-kroki.git cd n8n-nodes-kroki -
Install dependencies:
npm install -
Build the project:
npm run build -
Link for local development:
npm link cd ~/.n8n/nodes npm link n8n-nodes-kroki
Development Commands
npm run build– Build TypeScript and copy assetsnpm run dev– Watch mode for developmentnpm run lint– Check for linting errorsnpm run lintfix– Automatically fix linting errorsnpm run format– Format code with Prettier
Project Structure
├── nodes/Kroki/ # Kroki node implementation
│ ├── Kroki.node.ts # Main node logic
│ └── kroki.svg # Node icon
├── n8n_test_env/ # Docker testing environment
├── docs/ # Documentation and architecture
├── dist/ # Compiled output
└── package.json # Package configuration
Testing
Local Testing with Docker
The project includes a Docker-based testing environment for comprehensive integration testing:
-
Start the test environment:
cd n8n_test_env docker-compose -f compose.n8n-service.yaml up -
Access n8n interface: Open http://localhost:5678
-
Test the Kroki node in real workflows with various diagram types
Manual Testing
- Install the node locally (see Development section)
- Create test workflows in n8n with different diagram types
- Verify output formats (PNG, SVG, PDF) are generated correctly
- Test error scenarios (invalid syntax, network issues, timeouts)
For detailed testing procedures and use cases, see docs/designs/use_cases.md.
Resources
- n8n community nodes documentation
- Kroki official documentation
- Supported diagram types
- Project architecture documentation
- Collaboration guide