DVPE is a desktop-oriented visual editor for designing audio graphs and
exporting Daisy-oriented C++ project files. Build a patch from DSP, control,
math, and hardware blocks; edit it in the Inspector; save it as a .dvpe
project; then review the generated source in your normal Daisy toolchain.
Current status: the React/Vite web editor is operational and tested. DVPE is not a firmware compiler, hardware flasher, or packaged desktop release.
The earlier Original Style design is retained for comparison: view the Field Additive Synth screenshot.
Prerequisite: Node.js 20 or newer.
- Clone or download this repository.
- Double-click
START_DVPE.cmd.
On the first run, the launcher installs the exact locked dependencies. It then
starts DVPE at http://127.0.0.1:1420/ and opens the browser. It does not need
administrator rights and installs nothing globally.
Manual start on Windows, macOS, or Linux:
git clone https://github.com/Denys/DVPE.git
cd DVPE/dvpe_CLD
npm ci
npm run dev -- --openThe tutorials form a short path from first launch through Inspector review, hardware mapping, export, reusable blocks, and visual customization. Each one uses the current interface and can be completed independently.
| Tutorial | Time | You will finish with |
|---|---|---|
| Build your first patch | 10 min | A saved source-to-output graph and a clear export boundary. |
| Inspect, map hardware, and export | 15–20 min | A reviewed graph, stored Daisy target, and C++/Makefile package. |
| Map a patch to Daisy Field | 10–15 min | A working four-layer Field control map based on the included example. |
| Create and reuse a custom block | 15–20 min | A reusable block with chosen public ports and parameters. |
| Choose and tune an interface design | 10 min | A readable Stitch Neon or Experimentator preset. |
Open the full tutorial index, or begin with the first patch tutorial. The completed Field example below shows the same basic source → processing → output flow used throughout the series.
The normal handoff is Inspector → Hardware → Export C++. Advanced is an optional external-AI review pass, not a replacement for compilation or hardware validation. Follow the complete Inspector, Hardware, and Export tutorial for the step-by-step workflow.
- A catalog of 174 runtime blocks in 9 categories, with 329 parameters and 227 CV-controllable parameters.
- Drag-and-drop patch authoring, validated connections, graph analysis, alignment tools, comments, and a Poly Voice Blanket canvas directive.
- Parameter editing, CV enablement, connectivity tracing, and design controls in the Inspector.
- Custom block creation, import/export, nested internals, reusable code modules, and port binding.
.dvpesave/load, autosave recovery, recent projects, and embedded custom block definitions.- Daisy-oriented C++ source and Makefile generation, downloaded as a ZIP.
- Hardware/Field mapping, conflict checks, polyphonic code paths, and an optional Advanced Export pass using a user-supplied AI API key.
Generated code is a starting point. Compile, inspect, test, and validate it on the intended hardware before use.
DVPE currently provides exactly three selectable interface designs. Cycle between them with the design button in the top bar.
| Design | Best suited to |
|---|---|
| Original Style | Dense patch editing and debugging, where restrained contrast and low visual complexity matter most. |
| Stitch Neon | Demos, presentations, and visually tracing signal flow through color-coded blocks and brighter connections. |
| Experimentator | Exploratory visual work and building a personal appearance with stronger glow, glass, and geometry controls. |
Stitch Neon and Experimentator are fine-tunable in Inspector → Design. Changes are applied live, and both modes support saved presets. See the design tuning tutorial or the complete Block Diagram and Inspector guide for the full workflow, controls, shortcuts, export steps, and troubleshooting.
This snapshot was verified on 2026-09-01:
| Area | Verified state |
|---|---|
| Automated tests | 883 tests pass across 46 files. |
| Static analysis | ESLint completes with no errors; 146 warnings remain as typed-cleanup and hook-dependency maintenance work. |
| Production build | TypeScript and Vite build complete successfully; Vite reports a large bundle chunk as open performance work. |
| Browser runtime | Module Library, Canvas, Inspector, design switching, save/load, Hardware, and export surfaces render at the fixed local URL. |
| Desktop packaging | Not included. The supported runtime is the browser application. |
| Firmware build/flash | Not included. Use an external Daisy firmware workspace after export. |
| Releases | No packaged installer or tagged release yet. |
| Dependency audit | npm audit reports 2 remaining advisories (1 low, 1 moderate), through Monaco/DOMPurify. Dependency maintenance remains open work. |
The public project began in January 2026 as a 76-block editor with a canvas, Inspector, registry, state stores, and Daisy code generation. February added custom blocks and nested internals. May added Field hardware mapping, polyphonic generation, persistence, Neon design work, and a compact polyphonic Grainlet workflow. July added reproducible dependency locking, tracked codegen fixtures, and CI coverage. The September 2026 sharing edition separates the usable product from private agent files, development archives, and local-only workspaces, while adding verified onboarding and user documentation.
- Tutorial index
- Build your first patch
- Inspect, map hardware, and export
- Create and reuse custom blocks
- Tune the three interface designs
- User guide index
- Block Diagram and Inspector guide
- Block catalog reference
- Daisy Field Mapping example tutorial
Run from dvpe_CLD/:
npm ci
npm run dev
npm test -- --run
npm run build
npm run lintThe fixed development URL is http://127.0.0.1:1420/. If that port is already
used by another application, stop that application before launching DVPE.
This is a clean sharing repository with a fresh history. It contains the application, tests, examples, user documentation, curated GUI and tutorial screenshots, and CI/Pages workflows. Local settings, credentials, agent prompts and memory, private design sources, development dashboards, archives, and external firmware workspaces are intentionally excluded.
MIT License. See LICENSE.





