thedmd/imgui-node-editor

Node Editor built using Dear ImGui

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 2 minutes ago
Added to GitGenius on September 15th, 2026
Created on December 10th, 2017
Open Issues & Pull Requests: 119 (+0)
GitHub issues: Enabled
Number of forks: 708
Total Stargazers: 4,507 (+0)
Total Subscribers: 85 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 7.9 days
Mean response time: 56.6 days
90th percentile: 237.3 days
Tracked items: 20

Most active contributors

Sign in to see contributor activity.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 25
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 551 days
Stale 30+ days: 25
Stale 90+ days: 24

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

No label distribution available yet.

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

imgui-node-editor is a node editor widget built using Dear ImGui.

The tool solves the problem of building node-based visual editors by providing an ImGui-compatible API that handles the interaction layer while leaving content rendering to the user. It manages node placement, dragging, zooming, scrolling, and selection internally, while allowing full customization of node and pin appearance. The editor operates on the principle of "draw your content, we do the rest," separating interaction logic from presentation.

The tool suits projects that need blueprint-style editors or other node-based interfaces within an ImGui application. It works well for game development tools and engine editors where visual node graphs are required. The project is designed as a foundation for more complex solutions rather than a complete out-of-the-box editor, making it appropriate for developers comfortable with ImGui's immediate-mode paradigm and willing to implement their own node content rendering. It requires only vanilla ImGui and C++14, with no heavy external dependencies, making integration straightforward through copy-paste of source files into existing projects.

Development activity shows consistent engagement with the codebase through regular refinements and structural improvements. The project has undergone recent restructuring to align with ImGui's layout conventions, indicating active maintenance and evolution. The maintainer actively addresses issues and questions from users, maintaining responsiveness to the community. Documentation includes working examples demonstrating basic usage patterns, supporting developers who want to understand the API before committing to adoption.