Electron —— Cannot find module ‘index.js’

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Electron —— Cannot find module ‘index.js’相关的知识,希望对你有一定的参考价值。

现象

在开发环境下运行应用没问题,但是用electron-packager打包后,运行EXE,报告如下错误:
技术分享图片
 
核心错误信息是说没有找到index.js这个模块。

分析

我们的应用中其实并没有index.js模块,于是仔细观察package.json文件,发现没有“main”这个节点,而这个节点是配置应用入口JS文件的。

解决

在package.json中增加main节点,如下:

{
  "main": "main.js",
  "scripts": {
    "start": "electron .",
    "package": "electron-packager . WriteCode --win --out output --arch=x64 --electron-version=3.0.5 --overwrite --icon=src/favicon.ico"
  },

  "devDependencies": {
    "electron": "^3.0.5"
  }
}

以上是关于Electron —— Cannot find module ‘index.js’的主要内容,如果未能解决你的问题,请参考以下文章

Electron常见问题 50 - Error: Cannot find module ‘react‘

Electron 发生错误 "Cannot find module app"的解决方案

Electron —— Cannot find module ‘jquery.min.js’

Electron —— Cannot find module ‘jquery.min.js’(II)

electron-builder 打包出现 cannot find module fspromises

electron-vue引入squlite3模块,并解决Uncaught Error:cannot find module的问题