I'm trying to build and share an application based on Node.js and the Electron technology, but I want that precompilled package (.exe or .msi, for example) install the MongoDB Server software.
For Ubuntu packages I just have to add the MongoDB Server to the list of dependencies of my software (in package.json configs), and then the package manager (APT) will install that for the client.
For Windows otherwise I saw that some (in fact, mostly of them) games on Steam install DirectX or other dependencies when the game is being installed, but I can't figure out how to do this or how to configure it in the Electron configs.
So the question is: Can I "put" the MongoDB Server install program inside the precompilled package of my Windows application?