使用g npm install npm @ latest -g更新节点包管理器并获取错误

时间:2018-05-23 23:09:51

标签: node.js npm npm-install

我试图在终端中使用g npm install npm @ latest -g更新我的节点包管理器,但当我尝试使用npm --version或npm -v或甚至npm install检查它是否已更新时,我得到了以下错误:

SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:387:25)
at Object.Module._extensions..js (module.js:422:10)
at Module.load (module.js:357:32)
at Function.Module._load (module.js:314:12)
at Function.Module.runMain (module.js:447:10)
at startup (node.js:139:18)
at node.js:999:3

我的NPM版本为5.0.3,现在我无法运行任何npm命令。有人可以帮我解决这个错误,卸载这个最新版本或任何东西,以使这个版本工作。

1 个答案:

答案 0 :(得分:0)

Block-scoped declarations not yet supported outside strict mode - Laravel Mix,请查看此StackOverflow答案。解决方案几乎是更新Node,但我会解释原因。有一种新的Javascript叫做ES6(及以上版本),它使用了Node版本中找不到的某些关键字。新的NPM使用这些关键字,但您的旧版本的Node无法解释它们。最好的选择是卸载并获取最新版本。