electron-store 引入后报错 找不到 fs path os 等模块
来源:8-2 新版 electron(>12) 出现错误,解决方法

慕丝1525437
2022-04-09
引入 elecron-store 后 运行程序报如下错误 。老师能帮我看一下是什么原因吗
ERROR in ./node_modules/atomically/dist/index.js 9:13-28
Module not found: Error: Can’t resolve ‘path’ in ‘C:\workspace\cloud-doc\node_modules\atomically\dist’
BREAKING CHANGE: webpack < 5 used to include polyfills for node.js core modules by default.
This is no longer the case. Verify if you need this module and configure a polyfill for it.
If you want to include a polyfill, you need to:
- add a fallback ‘resolve.fallback: { “path”: require.resolve(“path-browserify”) }’
- install 'path-browserify’
If you don’t want to include a polyfill, you can use an empty module like this:
resolve.fallback: { “path”: false }
ERROR in ./node_modules/atomically/dist/utils/fs.js 8:11-24
Module not found: Error: Can’t resolve ‘fs’ in 'C:\workspace\cloud-doc\node_modules\atomically\dist\utils’
Did you mean ‘./fs’?
Requests that should resolve in the current directory need to start with ‘./’.
Requests that start with a name are treated as module requests and resolve within module directories (node_modules, C:\workspace\cloud-doc\node_modules).
If changing the source code is not an option there is also a resolve options called ‘preferRelative’ which tries to resolve these kind of requests in the current directory too.
1回答
-
张轩
2022-04-10
同学你好
仔细看错误就发现,他其实是找不到 fs 模块,这是因为最新版的 webpack5 不再内置这些模块导致的,但是 electron store 中使用了fs 所以找不到。
但是我们假如我们已经在应用中配置了fs 模块的访问,就应该是可以的。
如果可以的话,可以把代码库(git)给我,我在本地帮你看下。
112023-05-12
相似问题