npm install -g electron-prebuilt
electron .
发布32位exe应用程序:npm run package32 发布64位exe应用程序:npm run package
使用Electron Hybird架构嵌入本Web App的时候,需要对项目下/src/index.html文件进行少许改进。要在页面head节内增加:
<script>
window.nodeRequire = require;
delete window.require;
delete window.exports;
delete window.module;
</script>
使用./index_with_iframe.html页面,在iframe的src里面植入链接,并将main.js中的启动页面设置成该页面,如此可以解决。