프로그래밍 언어/HTML,CSS,JS

Node.js에서“ReferenceError : primordials is not defined”수정 방법

Rateye 2021. 7. 9. 10:09
728x90
반응형
질문 : Node.js에서“ReferenceError : primordials is not defined”수정 방법

'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
                                  
답변

같은 오류가 발생했습니다. Node.js 12와 Gulp.js 3을 사용하고 있다고 생각합니다.이 조합이 작동하지 않습니다. Gulp.js 3이 Node.js 12에서 깨졌습니다. # 2324

Jan.의 이전 해결 방법도 작동하지 않습니다. Node.js 11.0.0으로 업데이트 한 후 Gulp.js를 실행하면 'ReferenceError : internalBinding is not defined'# 2246이 표시되면서 종료됩니다.

솔루션 : Gulp.js 4로 업그레이드하거나 이전 버전의 Node.js로 다운 그레이드하십시오.

출처 : https://stackoverflow.com/questions/55921442/how-to-fix-referenceerror-primordials-is-not-defined-in-node-js
728x90
반응형