electron使用electron-forge打包后报错cannot find module ‘XXX’

1.报错后先思考为什么会找不到模块。进入当前项目的node_modules查看后,果然缺失了当前报错的模块。具体表现为,node_modules中显示的模块名字为:@express

在写项目的时候,许多模块是全局安装,所以在本地使用没有问题,但是打包的时候不会打包全局安装的内容,因此打完包运行会出现cannot find module ‘ws’,cannot find module ‘express’等等错误。

2.解决:将这些模块安装在项目中。

npm i express.

如有错误,敬请指出,感激不尽。

 

上一篇:R语言:package 的相关操作


下一篇:When allowCredentials is true, allowedOrigins cannot contain the special value “*“ since that cannot