How do you execute an executable in electron-js (with its path given)?
I want to start within my application any other application. My operating system is Windows, so I'm looking for answers for Windows, but when there is also a solution for Linux I'm not reluctant in getting to know this solution.
For Example:
function startApk() {
let path = "C:\\Program Files\\VideoLAN\\VLC\\vlc.exe";
<!-- Here I want my program to be executed -->
}