Skip to main content

Project Directory

visual-node is a single-project tool: one editor-server instance always works against exactly one project directory (resolved as described in Environment Variables). Everything it reads and writes lives inside that folder.

What lives in a project directory

PathPurpose
*.blueprint filesYour flows' source of truth — a file explorer inside the editor lets you create your own folder/file layout. Stored on disk as a compact binary format (FlatBuffers/FlexBuffers), not JSON, though the extension stays .blueprint.
Generated *.js filesWhatever "Compile" produces — plain CommonJS Express source, one output file per .blueprint file, written next to your flow files.
package.jsonCreated/merged automatically the first time you compile — declares express plus any npm packages your flow nodes require (see logic.require and Handler Function/Function nodes' npmDependencies fields in the Node Reference).
visual-node-project-settings.jsonProject execution mode and other settings (created/edited via the Settings button in the toolbar). Controls whether the Run button executes as a Server or Script, and optionally which file is the entry point. Auto-detected defaults apply if this file doesn't exist.
.visualnode/plugins/Installed plugin node definitions (hidden from the file explorer).
README.PLUGIN.mdA full plugin-authoring guide, scaffolded automatically into every project the first time its editor-server starts.

Multi-file projects

You aren't limited to a single flow. Organize .blueprint files into your own folder/file tree via the editor's file explorer, write reusable functions in one file, mark the ones you want to share with logic.export, and pull them into another file with logic.require (source type "Local"). Hitting Compile compiles every .blueprint file in the project at once, so cross-file require()s between them resolve correctly — not just the one file you currently have open.

See Configuration, the Logic section of the Node Reference for logic.function/logic.export/logic.require, and Examples for complete worked projects.