小编典典

如何修复 Node.js 中的“ReferenceError: primordials is not defined”

all

我已经通过“npm install”安装了 Node.js 模块,然后我尝试gulp sass-watch在命令提示符下进行操作。之后,我得到了以下回复。

[18:18:32] Requiring external module babel-register
fs.js:27
const { Math, Object, Reflect } = primordials;
                                  ^

ReferenceError: primordials is not defined

我以前试过这个gulp sass-watch

npm -g install gulp-cli

阅读 208

收藏
2022-03-02

共1个答案

小编典典

我遇到了同样的错误。我怀疑您使用的是 Node.js 12 和 Gulp.js 3。这种组合不起作用: Gulp.js 3 在 Node.js 12
上损坏 #2324

1 月之前的解决方法也不起作用: 更新到 Node.js 11.0.0 后,运行 Gulp.js 退出并出现“ReferenceError:
internalBinding is not
defined”#2246

解决方案:升级到 Gulp.js 4 或降级到 Node.js 的早期版本。

2022-03-02