Healix.NET empowers your .NET applications with automatic error recovery and resilience.
Plug-and-play SDK to detect, log, and heal from runtime failures.
- Self-Healing SDK: Recover from exceptions and service failures automatically.
- Custom Healing Policies: Retry, fallback, backup restore, and more.
- Live Dashboard: Monitor healing events, statistics, and manage policies in a WPF app.
- Smart Logging: Complete log of all healing attempts, with analytics.
- Extensible: Add new healing policies or integrate with external monitoring tools.
- Open API: Ready for any .NET platform.
dotnet add package HealixNETvar manager = new SelfHealingManager();
manager.RegisterPolicy(new RetryPolicy(3));
int result = await manager.ExecuteWithHealing<int>(async () => {
// Risky operation
return 10 / 0;
}, "Division Test");Use the WPF app to visualize healing events, manage policies, and see analytics.

MIT License (see LICENSE file for full details).