I am new to electron and I want to build electron installer for all platform (mac, linux, windows, etc) which I am able to do.
This electron app would use osquery
to grab some information from the user system.
So I want to install and run osquery
, before installing my electon
build in user machine.
Tried -- I've tried including .sh file in extraFiles(build - package.json) which contain installation command and that file will be executed in electon/main js file.
But I am unable to install osquery
and my electron build in one go.
I want user to install only my elctron
build app and rest software(osquery
) must be installed in the same process of installation.