Visualizer Configuration
Added in
eventcatalog@2.42.0
By default EventCatalog will render multiple nodes for your channels in the visualizer. This is to give you a better understanding of the relationship between your messages and channels.
If you prefer to only see a single node for your channels you can change the rendering mode in the visualizer settings.
Visualizer configuration
The visualizer configuration is set in the eventcatalog.config.js
file.
module.exports = {
visualiser: {
channels: {
// The render mode for channels in the visualiser
// supports `flat` or `single`
renderMode: 'single'
}
}
}