workflow-analysis Svelte Themes

Workflow Analysis

A Svelte 5 application for visualizing directed acyclic graphs (DAGs) representing workflows.

Workflow Analysis

An application for visualizing direct acyclic graphs (DAGs) depicting workflows. Built with Svelte 5.

Developing

Install dependencies with npm install, then start a development server:

npm run dev

Building

To create a production version of your app:

npm run build

This application was made to run on Vercel infrastructure. (See Svelte Vercel adapter.)

Deploying

The application expects an API with an endpoint defined by the VITE_API_URL environment variable. Expected incoming data is of the form:

{ 
        "nodes": [
            {
                "id": 1,
                "name": "Aardvark",
                "parents": [],
                "type": "TYPE_1", "tags": { "planet": "earth" }
            },
            {
                "id": 2,
                "name": "Apple",
                "parents": [],
                "type": "TYPE_2",
                "tags": { "planet": "earth", "star": "sun" }
            },
        ]
    }

Top categories

svelte logo

Need a Svelte website built?

Hire a professional Svelte developer today.
Loading Svelte Themes