# NodeEditor **Repository Path**: PCJT/NodeEditor ## Basic Information - **Project Name**: NodeEditor - **Description**: No description available - **Primary Language**: C# - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-06 - **Last Updated**: 2026-03-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # NodeEditor [![Build Status](https://dev.azure.com/wieslawsoltes/GitHub/_apis/build/status/wieslawsoltes.NodeEditor?branchName=main)](https://dev.azure.com/wieslawsoltes/GitHub/_build/latest?definitionId=104&branchName=main) [![CI](https://github.com/wieslawsoltes/NodeEditor/actions/workflows/build.yml/badge.svg)](https://github.com/wieslawsoltes/NodeEditor/actions/workflows/build.yml) | Badge | Package | Downloads | | --- | --- | --- | | [![NuGet](https://img.shields.io/nuget/v/NodeEditorAvalonia.svg)](https://www.nuget.org/packages/NodeEditorAvalonia/) | [NodeEditorAvalonia](https://www.nuget.org/packages/NodeEditorAvalonia/) | [![Downloads](https://img.shields.io/nuget/dt/NodeEditorAvalonia.svg)](https://www.nuget.org/packages/NodeEditorAvalonia/) | | [![NuGet](https://img.shields.io/nuget/v/NodeEditorAvalonia.Model.svg)](https://www.nuget.org/packages/NodeEditorAvalonia.Model/) | [NodeEditorAvalonia.Model](https://www.nuget.org/packages/NodeEditorAvalonia.Model/) | [![Downloads](https://img.shields.io/nuget/dt/NodeEditorAvalonia.Model.svg)](https://www.nuget.org/packages/NodeEditorAvalonia.Model/) | | [![NuGet](https://img.shields.io/nuget/v/NodeEditorAvalonia.Mvvm.svg)](https://www.nuget.org/packages/NodeEditorAvalonia.Mvvm/) | [NodeEditorAvalonia.Mvvm](https://www.nuget.org/packages/NodeEditorAvalonia.Mvvm/) | [![Downloads](https://img.shields.io/nuget/dt/NodeEditorAvalonia.Mvvm.svg)](https://www.nuget.org/packages/NodeEditorAvalonia.Mvvm/) | | [![NuGet](https://img.shields.io/nuget/v/NodeEditorLogic.Core.svg)](https://www.nuget.org/packages/NodeEditorLogic.Core/) | [NodeEditorLogic.Core](https://www.nuget.org/packages/NodeEditorLogic.Core/) | [![Downloads](https://img.shields.io/nuget/dt/NodeEditorLogic.Core.svg)](https://www.nuget.org/packages/NodeEditorLogic.Core/) | | [![NuGet](https://img.shields.io/nuget/v/NodeEditorLogic.Editor.svg)](https://www.nuget.org/packages/NodeEditorLogic.Editor/) | [NodeEditorLogic.Editor](https://www.nuget.org/packages/NodeEditorLogic.Editor/) | [![Downloads](https://img.shields.io/nuget/dt/NodeEditorLogic.Editor.svg)](https://www.nuget.org/packages/NodeEditorLogic.Editor/) | | [![NuGet](https://img.shields.io/nuget/v/NodeEditor.Base.svg)](https://www.nuget.org/packages/NodeEditor.Base/) | [NodeEditor.Base](https://www.nuget.org/packages/NodeEditor.Base/) | [![Downloads](https://img.shields.io/nuget/dt/NodeEditor.Base.svg)](https://www.nuget.org/packages/NodeEditor.Base/) | | [![NuGet](https://img.shields.io/nuget/v/NodeEditor.Logic.svg)](https://www.nuget.org/packages/NodeEditor.Logic/) | [NodeEditor.Logic](https://www.nuget.org/packages/NodeEditor.Logic/) | [![Downloads](https://img.shields.io/nuget/dt/NodeEditor.Logic.svg)](https://www.nuget.org/packages/NodeEditor.Logic/) | A node editor control for Avalonia. # About The node editor is an Avalonia control for editing and rendering nodes and connectors. Node contents can be defined from xaml. Node controls, connectors and pins can be retemplated from xaml or used with the provided default theme. The contents of the nodes are rendered based on provided view models. The default implementation of the view models is done using ReactiveUI, users can create their own view models based on core model interfaces. The node contents are resolved using the provided object type by view locator. ![image](https://user-images.githubusercontent.com/2297442/201498448-cd76b29f-ea87-4f0b-9dd5-071c9e49b7c2.png) ## Building NodeEditor First, clone the repository or download the latest zip. ``` git clone https://github.com/wieslawsoltes/NodeEditor.git ``` ### Build on Windows using script * [.NET Core](https://www.microsoft.com/net/download?initial-os=windows). Open up a command-prompt and execute the commands: ``` .\build.ps1 ``` ### Build on Linux using script * [.NET Core](https://www.microsoft.com/net/download?initial-os=linux). Open up a terminal prompt and execute the commands: ``` ./build.sh ``` ### Build on OSX using script * [.NET Core](https://www.microsoft.com/net/download?initial-os=macos). Open up a terminal prompt and execute the commands: ``` ./build.sh ``` ## Web ``` git clone https://github.com/wieslawsoltes/NodeEditor.git dotnet workload install wasm-tools dotnet run --project ./samples/NodeEditor.Web/NodeEditor.Web.csproj -c Release ``` ## Samples ``` dotnet run --project ./samples/NodeEditor.Desktop/NodeEditor.Desktop.csproj -c Release dotnet run --project ./samples/NodeEditor.Logic.Desktop/NodeEditor.Logic.Desktop.csproj -c Release ``` LogicLab is a digital logic editor/simulator sample with clocks, timing delays, inline component editing, and an IC library. ## NuGet NodeEditor is delivered as a NuGet package. You can find the packages here [NuGet](https://www.nuget.org/packages/NodeEditorAvalonia/) and install the package like this: `Install-Package NodeEditorAvalonia` ## Available Packages * [NodeEditorAvalonia](https://www.nuget.org/packages/NodeEditorAvalonia) - The main package with Avalonia controls and default theme. * [NodeEditorAvalonia.Model](https://www.nuget.org/packages/NodeEditorAvalonia.Model) - The base interfaces used in controls and view models. * [NodeEditorAvalonia.Mvvm](https://www.nuget.org/packages/NodeEditorAvalonia.Mvvm) - The MVVM view models with default implementation. * [NodeEditorLogic.Core](https://www.nuget.org/packages/NodeEditorLogic.Core) - Core logic sample models and services used by LogicLab. * [NodeEditorLogic.Editor](https://www.nuget.org/packages/NodeEditorLogic.Editor) - LogicLab editor-specific types and tooling. * [NodeEditor.Base](https://www.nuget.org/packages/NodeEditor.Base) - Base sample assets and view models. * [NodeEditor.Logic](https://www.nuget.org/packages/NodeEditor.Logic) - LogicLab sample assets and view models. ### Package Sources * https://api.nuget.org/v3/index.json * https://www.myget.org/F/avalonia-ci/api/v2 ## Resources * [GitHub source code repository.](https://github.com/wieslawsoltes/NodeEditor) ## License NodeEditor is licensed under the [MIT license](LICENSE.TXT).