npm --version正在给出errormodule.js:538 throw err; ^错误:找不到模块

时间:2017-11-15 11:24:55

标签: javascript node.js cmd

安装Node.js之后,我通过输入cmd:

来检查节点的版本
  

node --version,

它向我展示了版本,但是当我输入

  

npm --version

它给了我一个错误

module.js:538 
     throw err;
     ^
Error: Cannot find module

1 个答案:

答案 0 :(得分:0)

运行angular 4项目时出现以下错误。

<强> module.js:538     扔错了;     ^ 错误:找不到模块'@ angular-devkit / core'

要修复错误,只需运行..

npm i -D @angular-devkit/core

还要检查package.json文件夹,在@ @ angular / cli中添加^符号:“^ 1.6.1”,

    "devDependencies": {
    "@angular-devkit/core": "^0.4.3",
    "@angular/cli": "^1.6.1",