Examples
Each directory has its own README with the exact commands.
| Example | What it shows | Run it |
|---|---|---|
examples/danzig-minimal | The smallest complete plugin. Start here. | zig build run-minimal |
examples/danzig-gain | A fuller plugin: Plugin, ParameterMap, GainProcessor, and a factory vtable. | Built into the .vst3 bundle |
examples/danzig-test | Driving the plugin through the raw VST3 C ABI. | zig build test-integration |
examples/danzig-gain-standalone | Offline WAV processing with the DSP core. | zig build run-standalone |
examples/danzig-webui | A pure-std.net HTTP server serving the web UI. | ./zig-out/bin/danzig-webui |
examples/danzig-gain-ui | A native macOS window: WebView UI plus CoreAudio device enumeration. | zig build run-gui |