diff --git a/ElectronNET.API/App.cs b/ElectronNET.API/App.cs
index cd10028..69d8722 100644
--- a/ElectronNET.API/App.cs
+++ b/ElectronNET.API/App.cs
@@ -1608,5 +1608,35 @@ namespace ElectronNET.API
}
private bool _preventQuit = false;
+
+ private const string ModuleName = "app";
+ ///
+ /// Subscribe to an unmapped event on the module.
+ ///
+ /// The event name
+ /// The handler
+ public void On(string eventName, Action fn)
+ => Events.Instance.On(ModuleName, eventName, fn);
+ ///
+ /// Subscribe to an unmapped event on the module.
+ ///
+ /// The event name
+ /// The handler
+ public void On(string eventName, Action