Creating an Interactive Engineering Diagram App in JavaScript

In this post, we’ll walk through the process of building a web-based electrical diagram application. This tool allows users to create, modify, and save circuit and home appliance diagrams. We’ll use the.Diagramming for JavaScript, and its ability to support SVG images in modes, various arrow head shapes on links, save and load of flowcharts to/from various formats.

The final application will feature:

  • A diagram view that supports pan and zoom.
  • A palette of pre-defined SVG nodes representing various engineering components, separated into logical sections.
  • The ability to save the current diagram to a JSON file and load it back.
  • Real-time style customization for text, links, and more.
A circuit schema created with MindFusion Diagramming library for JavaScript

Continue reading

Getting Started: Building Interactive JavaScript Diagrams with MindFusion

In this article we look at the steps required to build this minimal JavaScript diagramming application:

The application uses MindFusion JavaScript Diagram library and allows the user to create various flowchart shapes with drag and drop, customize their color and edit text. Users can create links and specify whether links have arrowheads. Once ready, they can save the current diagram and load it when needed.

Continue reading

Building a Real-Time Collaborative Diagram with JavaScript, Node.js, and Socket.IO

In a world that thrives on remote work and instant communication, building collaborative tools has become more relevant than ever. Following up on an older post where we built a collaborative mind map with ASP.NET MVC and SignalR, this article will guide you through creating a similar real-time, interactive diagramming application using a modern JavaScript stack: Node.js, Express, Socket.IO, and MindFusion’s powerful JavaScript Diagram library.

You can find the complete source code for the project on GitHub: collaborative-mindmap-javascript.

The Core Idea: A Server-Authoritative Model

To ensure consistency across all clients, we’ll implement a server-authoritative architecture. This means our Node.js server will maintain a single, master instance of the diagram. This instance acts as the single source of truth.

The workflow is as follows:

  1. A new user connects to the server.
  2. The server immediately sends a complete snapshot of its current diagram to the new user.
  3. When a user makes a change (e.g., creates a node), their client sends a small, specific event (a “fine-grained” event) to the server.
  4. The server updates its master diagram instance based on this event.
  5. The server then broadcasts the same event to all other connected clients, who each update their local diagrams accordingly.

This model is efficient and robust, preventing clients from falling out of sync.

Setting Up the Backend with Node.js and Socket.IO

Our server is built with Express and Socket.IO. The most important part is that we create an instance of the MindFusion Diagram object directly on the server. This is possible because the core data model of the library is isomorphic and does not depend on a browser environment.

Here’s a look at the key parts of our server.js file:

// server.js
import { Diagram, Shape } from '@mindfusion/diagramming';
import { Rect } from '@mindfusion/drawing';

// 1. Server-side diagram instance is our "source of truth"
const serverDiagram = new Diagram();

// 2. We can create a default diagram for the first user
const node1 = serverDiagram.factory.createShapeNode(10, 10, 30, 30);
node1.text = "Hello";
node1.id = "node1";
// ... and so on

// Helper function to find items in the server's diagram
function findNode(id) {
    return serverDiagram.nodes.find(n => n.id === id);
}

// 3. Handle new connections
io.on('connection', (socket) => {
    console.log('A user connected:', socket.id);

    // 4. Immediately send the full diagram to the new client
    socket.emit('load', serverDiagram.toJson());

    // 5. Handle incoming events from clients
    socket.on('nodeCreated', (data) => {
        // Update the server's diagram first
        const node = serverDiagram.factory.createShapeNode(data.x, data.y, data.width, data.height);
        node.id = data.id;
        node.text = data.text;
        node.shape = Shape.fromId(data.shape);

        // Then broadcast the event to other clients
        socket.broadcast.emit('nodeCreated', data);
    });

    // ... handlers for nodeModified, linkCreated, etc.
});

This setup ensures our server always holds the master state.

Building the Frontend with MindFusion’s Diagram Library

On the client-side, our index.js file is responsible for rendering the diagram and communicating with the server.

1. Connecting and Receiving the Initial State:

The client connects to the Socket.IO server and listens for the load event. When it receives this event, it loads the full diagram JSON sent by the server.

// index.js
document.addEventListener("DOMContentLoaded", function () {
    socket = io("http://localhost:3000");

    diagram = DiagramView.create(document.getElementById("diagram")).diagram;

    // Listen for the 'load' event from the server
    socket.on('load', (data) => {
        diagram.fromJson(data);
    });

    // ... other event listeners
});

2. Sending Changes to the Server:

We attach listeners to the diagram’s events, such as nodeCreated. When a user creates a node, the handler fires, packages the relevant data into a simple model, and emits it to the server.

// index.js

// Attach the event listener
diagram.nodeCreated.addEventListener(onNodeCreated);

// The event handler function
function onNodeCreated(sender, args) {

    const node = args.node;
    // Assign a unique ID before sending
    if (!node.id) {
        node.id = socket.id + new Date().valueOf();
    }

    const r = node.bounds;
    const model = {
        id: node.id,
        text: node.text,
        shape: node.shape.id,
        x: r.x,
        y: r.y,
        width: r.width,
        height: r.height
    };

    // Emit the fine-grained event to the server
    socket.emit('nodeCreated', model);
}

3. Receiving Changes from the Server:

Finally, the client needs to handle incoming broadcasted events from the server. This is the counterpart to the server’s socket.broadcast.emit.

// index.js
socket.on('nodeCreated', (model) => {

    const node = diagram.factory.createShapeNode(
        model.x, model.y, model.width, model.height);
    node.id = model.id;
    node.text = model.text;
    node.shape = Shape.fromId(model.shape);
});

This code snippet creates a local ShapeNode programmatically when another client has drawn it interactively. The full sample project contains corresponding handlers for other node and link events.

Conclusion

By combining the powerful rendering capabilities of the MindFusion.Diagramming for JavaScript library with a server-authoritative model using Node.js and Socket.IO, we’ve built a robust and efficient collaborative application. This architecture ensures state consistency while minimizing the amount of data sent over the wire for real-time updates.

You can download the full source code and run the project yourself from this GitHub repository: https://github.com/MindFusionComponents/collaborative-mindmap-javascript.

Wishing you a bug-free 2026. Happy coding!

Building a Custom-Styled WPF Virtual Keyboard: A How-To Guide

Creating a custom user interface often requires tailoring components to fit your application’s specific design language. In this guide, we’ll walk you through how to build and style a WPF virtual keyboard from the ground up, using the powerful MindFusion’s WPF Virtual Keyboard component. The result will be a beautiful, resizable keyboard with custom icons, animations, and a clean, maintainable structure.

A custom virtual keyboard embedded in a WPF application

Continue reading