How to set a custom path for Electron app installer

时间:2017-08-13 13:58:10

标签: node.js electron

Is there a way to ask custom installation path to the user during electron app installation?

2 个答案:

答案 0 :(得分:1)

即使我将allowToChangeInstallationDirectory设置为true,编译后的安装程序也没有给我机会选择路径。我发现我的模块已经过时了。更新后,我设法得到了我想要的东西。因此,如果您有任何问题,请确保您的模块支持最新更新

另一个重要问题是正确设置package.json。如果您正在使用nsis并在Windows机器上执行此操作,则需要在package.json中声明以下内容。

    "win": {
  "icon": "build/icon.ico",
  "target": "nsis"
},
"nsis": {
  "allowElevation": false,
  "allowToChangeInstallationDirectory": true,
  "oneClick": false,
  "perMachine": true
},

答案 1 :(得分:0)

通过electron-builder' allowToChangeInstallationDirectory标志显示有一种方法