I have an Angular App running in my browser (Chrome, IE and Firefox). On Click of a button , it should open a local app, which is a stand alone desktop app, already installed in my system.
First of all, Is it possible? Will Angular / Browser allow such actions?
If possible, which all are the possible ways?
Can somebody help me?
It is possible to do that using protocols, by default browser supports
file://
and some other custom protocols that opens up the files in the browser window, applications like slack and discord use custom protocols that are built using electron into the applications and in the machine registry that chrome can trigger to open up an application from the web application.https://glebbahmutov.com/blog/electron-app-with-custom-protocol/