- 报错内容:
Uncaught TypeError TypeError: os.tmpDir is not a function
at <anonymous> (*** \lib\fs-storage.js:13:57)
- 解决方法:安装nodejs版本管理工具nvm,然后安装低版本的node环境,使用以下代码降低当前使用的node版本:
> nvm list
* 20.17.0 (Currently using 64-bit executable)
12.22.12
11.15.0
> nvm use 12.22.12
> node -v
v12.22.12
- 再次运行输出变为警告而非错误:
(node:3392) [DEP0022] DeprecationWarning: os.tmpDir() is deprecated. Use os.tmpdir() instead.