Electron Uncaught Error: A dynamic link library (DLL) initialization routine failed

后端 未结 2 1950
终归单人心
终归单人心 2020-12-29 06:58

I\'ve successfully built node.js addon, which works well with Node on Windows. Now, I want to create a Windows app using Electron. When loading the module in HTML file, I g

2条回答
  •  天涯浪人
    2020-12-29 08:02

    I'm using Electron 2 version and have the same error with another module.

    I solved this problem by this advise on Electron page: To ensure your native dependencies are always matched electron version, simply add script "postinstall": "electron-builder install-app-deps" to your package.json.

    And then I changed: "postinstall": "electron-builder install-app-deps && npm run lint:fix". Then npm run postinstall.

提交回复
热议问题