I want to do get downloaded apps and their information on computer (cross platform) with electronjs (nodejs). How can i get apps and how can i open them?
For example:
const installedApps = thisFunctionShouldReturnInstalledApps()
console.log(installedApps)
/*
[
"Firefox",
"Visual Studio Code",
"Slack",
"Bitwarden",
"Notion",
"Mailspring",
...
]
*/
thisFunctionShouldOpenApp(installedApps[1]) // Open Visual Studio Code
Thanks you.