Extendability
vvvv is not a monolithic software. Its core is rather slim with many optional packs to augment its functionality.
If you’re still missing a feature, here are your options:
- Get in touch, we offer custom feature development, support and consulting
- Help yourself by writing a custom node or an editor extension:
Custom nodes
The simplest way to create custom, reusable nodes is wrapping a group of nodes away in a new node. Do this for a bunch of nodes and create your own reusable pack of nodes which you can share on nuget.org.
Alternatively custom nodes can be written in pure C# or F#. No proprietary plugin-wrapping boilerplate code is needed. Any method written in code is available as node in VL, meaning simple nodes really just take a few lines of code.
If you know how to write code, extending vvvv with your own nodes is trivial.
Editor Extensions
Editor extensions allow you to extend the vvvv editor with your own tools. For a listing of available extensions, see Extensions. To create your own, see Editor Extensions in The Gray Book.


