0

I was install node modules by npm install, then I've tried gulp sass-watch in terminal. and get ReferenceError: primordials is not defined error like below Please Help Me with This:-

 [12:13:28] Requiring external module babel-register
 fs.js:27
 const { Math, Object, Reflect } = primordials;
                                  ^
 ReferenceError: primordials is not defined

Thank You In Advance.

  • 1
    It's a very same duplicate of https://stackoverflow.com/questions/55921442/how-to-fix-referenceerror-primordials-is-not-defined-in-node. I guess it could help you. – Naor Levi Jan 18 '20 at 12:40
  • 2
    Does this answer your question? [How to fix ReferenceError: primordials is not defined in node](https://stackoverflow.com/questions/55921442/how-to-fix-referenceerror-primordials-is-not-defined-in-node) – VLAZ Mar 19 '20 at 06:13

1 Answers1

1

Just downgrade you node package into a stable version like 10.13.0 and then re-install the node modules.it will work

Arul
  • 754
  • 11
  • 21