Orkes logo image
Product
Platform
Orkes Platform thumbnail
Orkes Platform
Orkes Agentic Workflows
Orkes Conductor Vs Conductor OSS thumbnail
Orkes vs. Conductor OSS
Orkes Cloud
How Orkes Powers Boat Thumbnail
How Orkes Powers BOAT
Try enterprise Orkes Cloud for free
Enjoy a free 14-day trial with all enterprise features
Start for free
Capabilities
Microservices Workflow Orchestration icon
Microservices Workflow Orchestration
Enable faster development cycles, easier maintenance, and improved user experiences.
Realtime API Orchestration icon
Realtime API Orchestration
Enable faster development cycles, easier maintenance, and improved user experiences.
Event Driven Architecture icon
Event Driven Architecture
Create durable workflows that promote modularity, flexibility, and responsiveness.
Human Workflow Orchestration icon
Human Workflow Orchestration
Seamlessly insert humans in the loop of complex workflows.
Process orchestration icon
Process Orchestration
Visualize end-to-end business processes, connect people, processes and systems, and monitor performance to resolve issues in real-time
Use Cases
By Industry
Financial Services icon
Financial Services
Secure and comprehensive workflow orchestration for financial services
Media and Entertainment icon
Media and Entertainment
Enterprise grade workflow orchestration for your media pipelines
Telecommunications icon
Telecommunications
Future proof your workflow management with workflow orchestration
Healthcare icon
Healthcare
Revolutionize and expedite patient care with workflow orchestration for healthcare
Shipping and logistics icon
Shipping and Logistics
Reinforce your inventory management with durable execution and long running workflows
Software icon
Software
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean leo mauris, laoreet interdum sodales a, mollis nec enim.
Docs
Developers
Learn
Blog
Explore our blog for insights into the latest trends in workflow orchestration, real-world use cases, and updates on how our solutions are transforming industries.
Read blogs
Check out our latest blog:
Conductor CLI Guide: Register, Run, Retry, and Recover Durable Workflows Without Leaving Your Terminal đź’»
Customers
Discover how leading companies are using Orkes to accelerate development, streamline operations, and achieve remarkable results.
Read case studies
Our latest case study:
Twilio Case Study Thumbnail
Orkes Academy New!
Master workflow orchestration with hands-on labs, structured learning paths, and certification. Build production-ready workflows from fundamentals to Agentic AI.
Explore courses
Featured course:
Orkes Academy Thumbnail
Events icon
Events
Videos icons
Videos
In the news icon
In the News
Whitepapers icon
Whitepapers
About us icon
About Us
Pricing
Get a demo
Signup
Slack FaviconDiscourse Logo icon
Get a demo
Signup
Slack FaviconDiscourse Logo icon
Orkes logo image

Company

Platform
Careers
HIRING!
Partners
About Us
Legal Hub
Security

Product

Cloud
Platform
Support

Community

Docs
Blogs
Events

Use Cases

Microservices Workflow Orchestration
Realtime API Orchestration
Event Driven Architecture
Agentic Workflows
Human Workflow Orchestration
Process Orchestration

Compare

Orkes vs Camunda
Orkes vs BPMN
Orkes vs LangChain
Orkes vs Temporal
Twitter or X Socials linkLinkedIn Socials linkYouTube Socials linkSlack Socials linkGithub Socials linkFacebook iconInstagram iconTik Tok icon
© 2026 Orkes. All Rights Reserved.
Back to Blogs

Table of Contents

Share on:Share on LinkedInShare on FacebookShare on Twitter
Worker Code Illustration

Get Started for Free with Dev Edition

Signup
Back to Blogs
COMMUNITY

Conductor OSS Updates: Polished Look for Workflow Visualizer and More

Najeeb Thangal
Najeeb Thangal
Software Engineer
Last updated: January 16, 2025
January 16, 2025
5 min read

Related Blogs

Our Second Year At Fintech_Devcon Was Amazing!

Aug 20, 2025

Our Second Year At Fintech_Devcon Was Amazing!

Everything You Missed from Orkes’ Seattle Developer Meetup 2025 and What’s Coming Next

May 26, 2025

Everything You Missed from Orkes’ Seattle Developer Meetup 2025 and What’s Coming Next

AI Orchestration Meetup [April 2024] - Recap

May 13, 2024

AI Orchestration Meetup [April 2024] - Recap

Ready to Build Something Amazing?

Join thousands of developers building the future with Orkes.

Start for free

Conductor OSS is the heart of Orkes' mission and identity: to build world-class developer tools for developers by developers. Our journey with Conductor OSS, from its humble roots at Netflix, has been powered by a vibrant community of developers who are redefining application workflow orchestration and driving innovation in real-world applications.

Today, we are thrilled to introduce a revamped workflow visualizer in our latest release, v3.21.11. These changes are powered by the new orkes-workflow-visualizer library, which brings significant improvement to the visual clarity and usability of workflow diagrams. With the latest update, it is now easier for users to navigate, visualize, and monitor their workflows.

Key updates in Conductor OSS

The key highlight of this update is the introduction of the orkes-workflow-visualizer package. While the core functionality of Conductor OSS remains the same, the visual representation has been upgraded to address readability and usability issues. Other changes include improvements to task timeouts and subworkflow priority. You can learn more about the changes in the v3.21.11 release notes.

Why are we doing this?

The previous workflow visualizer in Conductor OSS offered only a bare skeleton of the workflow diagram. It could not effectively display nested tasks and iterations, leaving users to interpret complex workflows with minimal visual guidance.

How users see their workflows directly impacts how they understand and use them. The new workflow visualizer is inspired by the polished design of the workflow diagrams in the enterprise Orkes Conductor. This update aims to provide users with a cleaner, more intuitive UI for better readability and navigation.

What’s new with the workflow visualizer

The following changes apply to both the workflow definition and workflow execution diagrams:

  • Design overhaul: The new visualizer introduces a sleek, modern design that is easy on the eyes.
  • Improved layouts: The layout of key task information is optimized for better readability, making it easier to grasp the flow of complex workflows at a glance.
  • Expanded task visibility: Nested tasks, iterations, and sub-workflows (previously hidden or hard to interpret) are now fully displayed in the diagram.

Here is a comparison of the workflow definition diagrams before and after v3.21.11:

a. Previous workflow definition diagram

Previous workflow definition diagram.

b. New workflow definition diagram

New workflow definition diagram.

And here is a comparison of the workflow execution diagrams before and after v3.21.11:

c. Previous workflow execution diagram

Previous workflow execution diagram.

d. New workflow execution diagram

New workflow execution diagram.

Implementation details

To bring this vision to life, we used Reaflow, a library designed for building node-based diagrams. Reaflow was chosen for the following advantages:

  • It offers a flexible and efficient way to create dynamic, interactive diagrams.
  • Its API and customization options align well with the requirements of Conductor OSS.
  • It is lightweight and performant, ensuring smooth rendering even for large or complex workflows.

The orkes-workflow-visualizer package was added as a dependency to the Conductor OSS UI, in the package.json:


{  "dependencies": {
  "orkes-workflow-visualizer": "^1.0.1"
}
}

To render both the workflow definition and execution diagrams, the visualizer component was integrated into the React UI:


import React from "react";
import { WorkflowVisualizer } from "orkes-workflow-visualizer";

const WorkflowDefinitionView = ({ workflowDefinition }) => {
return (
  <div style={{ height: "100vh", width: "100%" }}>
    <WorkflowVisualizer
      data={workflowDefinition}
    />
  </div>
);
};

export default WorkflowDefinitionView;

For the execution diagrams in particular, the data prop contains real-time information about workflow state and task progress:


const WorkflowExecutionView = ({ workflowExecution }) => {
return (
  <WorkflowVisualizer
    executionMode={true}
    data={workflowExecution}
  />
);
};

What users should know

  • The package is standalone. Users cannot directly edit or modify the visualizer package itself. However, it’s designed to work with Conductor OSS workflows out of the box.
  • Full compatibility. The package is fully compatible with existing workflows, so users can start using it without any migration steps.

Upgrading to the latest version

Here’s how you can get started with the new Conductor OSS workflow visualizer:

For new users

  1. Clone the Conductor OSS repository.

git clone https://github.com/conductor-oss/conductor.git
cd conductor
  1. Run the Conductor server.
    Use Docker Compose to spin up the Conductor server, which includes the new visualizer.

docker compose -f docker/docker-compose.yaml up
  • The server will start at http://localhost:8080.
  • The UI will be available at http://localhost:8127.
  1. Check out the workflow visualizer.
    In your browser, go to http://localhost:8127 to explore the updated workflow visualizer.

For existing users

If you're already using Conductor and want to upgrade to the latest version:

  1. Pull the latest changes from the Conductor repository.

git pull origin main
  1. Rebuild the server image to include the new workflow visualizer.

docker compose -f docker/docker-compose.yaml build
  1. Restart the Conductor server.
    Bring up the updated server:

docker compose -f docker/docker-compose.yaml up
  1. Access the updated workflow visualizer.
    Go to http://localhost:8127 to use the enhanced workflow visualizer. Your workflows will remain unchanged, but you'll see the improved visuals and features.

Wrap up

The updated workflow visualizer represents a major step forward for Conductor OSS, addressing key user needs around visual clarity and usability. Whether you’re tracking simple workflow executions or making changes to complex workflows with nested tasks, the new visualizer makes the experience more intuitive and enjoyable.

We’re so excited for you to try the new orkes-workflow-visualizer package. Head over to the Conductor OSS repo now to explore the updated workflow visualizer.

As always, we’d love to hear your feedback—connect with us on Slack or our Community site, or contribute to the Conductor OSS repo. ​​This community is what makes Conductor such a powerful workflow orchestration platform, and we are committed to collaboration, transparency, and building tools that solve real challenges that developers face.