web-dev-qa-db-ja.com

モジュール "@ angular-devkit/build-angular"が見つかりませんでした

Angular 6.0.1に更新した後、ng serveで次のようなエラーメッセージが表示されます。

Could not find module "@angular-devkit/build-angular" from "/home/Projects/myProjectName".
Error: Could not find module "@angular-devkit/build-angular" from "/home/Projects/myProjectName".
    at Object.resolve (/home/Projects/myProjectName/node_modules/@angular-devkit/core/node/resolve.js:141:11)
    at Observable.rxjs_1.Observable [as _subscribe] (/home/Projects/myProjectName/node_modules/@angular-devkit/architect/src/architect.js:132:40)

ng updateはすべてが順調であると言っています。 node_modulesフォルダーとnpm installの新規インストールを削除しても役に立ちませんでした。 

私のプロジェクトは[ng2-admin(Angular4 version)]に基づいています( https://github.com/akveo/ngx-admin )これが私のpackage.jsonの依存関係です。

 "dependencies": {
    "@angular/animations": "^6.0.1",
    "@angular/common": "^6.0.1",
    "@angular/compiler": "^6.0.1",
    "@angular/core": "^6.0.1",
    "@angular/forms": "^6.0.1",
    "@angular/http": "^6.0.1",
    "@angular/platform-browser": "^6.0.1",
    "@angular/platform-browser-dynamic": "^6.0.1",
    "@angular/platform-server": "^6.0.1",
    "@angular/router": "^6.0.1",
    "@ng-bootstrap/ng-bootstrap": "1.0.0-alpha.26",
    "@ngx-translate/core": "^10.0.1",
    "@ngx-translate/http-loader": "^3.0.1",
    "amcharts3": "github:amcharts/amcharts3",
    "ammap3": "github:amcharts/ammap3",
    "angular-table": "^1.0.4",
    "angular2-csv": "^0.2.5",
    "angular2-datatable": "0.6.0",
    "animate.css": "3.5.2",
    "bootstrap": "4.0.0-alpha.6",
    "bower": "^1.8.4",
    "chart.js": "1.1.1",
    "chartist": "0.10.1",
    "chroma-js": "1.3.3",
    "ckeditor": "4.6.2",
    "core-js": "2.4.1",
    "easy-pie-chart": "2.1.7",
    "font-awesome": "4.7.0",
    "fullcalendar": "3.3.1",
    "google-maps": "3.2.1",
    "ionicons": "2.0.1",
    "jquery": "3.2.1",
    "jquery-slimscroll": "1.3.8",
    "leaflet": "0.7.7",
    "leaflet-map": "0.2.1",
    "lodash": "4.17.4",
    "ng2-ckeditor": "1.1.6",
    "ng2-completer": "^1.6.3",
    "ng2-handsontable": "^2.1.0-rc.3",
    "ng2-slim-loading-bar": "^4.0.0",
    "ng2-smart-table": "^1.0.3",
    "ng2-tree": "2.0.0-alpha.5",
    "ngx-uploader": "4.2.4",
    "normalize.css": "6.0.0",
    "roboto-fontface": "0.7.0",
    "rxjs": "^6.1.0",
    "rxjs-compat": "^6.1.0",
    "zone.js": "0.8.26"
  },
  "devDependencies": {
    "@angular/cli": "^6.0.1",
    "@angular/compiler-cli": "^6.0.1",
    "@types/fullcalendar": "2.7.40",
    "@types/jasmine": "2.5.38",
    "@types/jquery": "2.0.41",
    "@types/jquery.slimscroll": "1.3.30",
    "@types/lodash": "4.14.61",
    "@types/node": "6.0.69",
    "codelyzer": "3.0.1",
    "gh-pages": "0.12.0",
    "jasmine-core": "2.5.2",
    "jasmine-spec-reporter": "3.2.0",
    "karma": "1.4.1",
    "karma-chrome-launcher": "2.0.0",
    "karma-cli": "1.0.1",
    "karma-coverage-istanbul-reporter": "0.2.0",
    "karma-jasmine": "1.1.0",
    "karma-jasmine-html-reporter": "0.2.2",
    "npm-run-all": "4.0.2",
    "protractor": "5.1.0",
    "rimraf": "2.6.1",
    "standard-changelog": "1.0.1",
    "stylelint": "7.10.1",
    "ts-node": "2.1.2",
    "tslint": "5.2.0",
    "tslint-eslint-rules": "4.0.0",
    "tslint-language-service": "0.9.6",
    "TypeScript": "^2.7.2",
    "typogr": "0.6.6",
    "underscore": "1.8.3",
    "wintersmith": "2.2.5",
    "wintersmith-sassy": "1.1.0"
  }

そして私のangular.json:

{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "newProjectRoot": "projects",
  "projects": {
    "ng2-admin": {
      "root": "",
      "sourceRoot": "src",
      "projectType": "application",
      "architect": {
        "build": {
          "builder": "@angular-devkit/build-angular:browser",
          "options": {
            "outputPath": "dist",
            "index": "src/index.html",
            "main": "src/main.ts",
            "tsConfig": "src/tsconfig.app.json",
            "polyfills": "src/polyfills.ts",
            "assets": [
              "src/assets",
              "src/favicon.ico"
            ],
            "styles": [
              "node_modules/roboto-fontface/css/roboto/sass/roboto-fontface.scss",
              "node_modules/normalize.css/normalize.css",
              "node_modules/font-awesome/scss/font-awesome.scss",
              "node_modules/ionicons/scss/ionicons.scss",
              "node_modules/bootstrap/scss/bootstrap.scss",
              "node_modules/leaflet/dist/leaflet.css",
              "node_modules/chartist/dist/chartist.css",
              "node_modules/fullcalendar/dist/fullcalendar.css",
              "node_modules/handsontable/dist/handsontable.full.css",
              "node_modules/ng2-slim-loading-bar/style.css",
              "src/app/theme/theme.scss",
              "src/styles.scss"
            ],
            "scripts": [
              "node_modules/jquery/dist/jquery.js",
              "node_modules/easy-pie-chart/dist/jquery.easypiechart.js",
              "node_modules/jquery-slimscroll/jquery.slimscroll.js",
              "node_modules/tether/dist/js/tether.js",
              "node_modules/bootstrap/dist/js/bootstrap.js",
              "node_modules/handsontable/dist/handsontable.full.js",
              "node_modules/chroma-js/chroma.js"
            ]
          },
          "configurations": {
            "production": {
              "optimization": true,
              "outputHashing": "all",
              "sourceMap": false,
              "extractCss": true,
              "namedChunks": false,
              "aot": true,
              "extractLicenses": true,
              "vendorChunk": false,
              "buildOptimizer": true,
              "fileReplacements": [
                {
                  "replace": "src/environments/environment.ts",
                  "with": "src/environments/environment.prod.ts"
                }
              ]
            }
          }
        },
        "serve": {
          "builder": "@angular-devkit/build-angular:dev-server",
          "options": {
            "browserTarget": "ng2-admin:build"
          },
          "configurations": {
            "production": {
              "browserTarget": "ng2-admin:build:production"
            }
          }
        },
        "extract-i18n": {
          "builder": "@angular-devkit/build-angular:extract-i18n",
          "options": {
            "browserTarget": "ng2-admin:build"
          }
        },
        "test": {
          "builder": "@angular-devkit/build-angular:karma",
          "options": {
            "main": "src/test.ts",
            "karmaConfig": "./karma.conf.js",
            "polyfills": "src/polyfills.ts",
            "tsConfig": "src/tsconfig.spec.json",
            "scripts": [
              "node_modules/jquery/dist/jquery.js",
              "node_modules/easy-pie-chart/dist/jquery.easypiechart.js",
              "node_modules/jquery-slimscroll/jquery.slimscroll.js",
              "node_modules/tether/dist/js/tether.js",
              "node_modules/bootstrap/dist/js/bootstrap.js",
              "node_modules/handsontable/dist/handsontable.full.js",
              "node_modules/chroma-js/chroma.js"
            ],
            "styles": [
              "node_modules/roboto-fontface/css/roboto/sass/roboto-fontface.scss",
              "node_modules/normalize.css/normalize.css",
              "node_modules/font-awesome/scss/font-awesome.scss",
              "node_modules/ionicons/scss/ionicons.scss",
              "node_modules/bootstrap/scss/bootstrap.scss",
              "node_modules/leaflet/dist/leaflet.css",
              "node_modules/chartist/dist/chartist.css",
              "node_modules/fullcalendar/dist/fullcalendar.css",
              "node_modules/handsontable/dist/handsontable.full.css",
              "node_modules/ng2-slim-loading-bar/style.css",
              "src/app/theme/theme.scss",
              "src/styles.scss"
            ],
            "assets": [
              "src/assets",
              "src/favicon.ico"
            ]
          }
        },
        "lint": {
          "builder": "@angular-devkit/build-angular:tslint",
          "options": {
            "tsConfig": [
              "src/tsconfig.app.json",
              "src/tsconfig.spec.json"
            ],
            "exclude": []
          }
        }
      }
    },
    "ng2-admin-e2e": {
      "root": "",
      "sourceRoot": "",
      "projectType": "application",
      "architect": {
        "e2e": {
          "builder": "@angular-devkit/build-angular:protractor",
          "options": {
            "protractorConfig": "./protractor.conf.js",
            "devServerTarget": "ng2-admin:serve"
          }
        },
        "lint": {
          "builder": "@angular-devkit/build-angular:tslint",
          "options": {
            "tsConfig": [
              "e2e/tsconfig.e2e.json"
            ],
            "exclude": []
          }
        }
      }
    }
  },
  "defaultProject": "ng2-admin",
  "schematics": {
    "@schematics/angular:component": {
      "prefix": "app",
      "styleext": "scss"
    },
    "@schematics/angular:directive": {
      "prefix": "app"
    }
  }
}
100
ForestG

Devの依存関係として@angular-devkit/build-angularをインストールしてください。このパッケージはAngular 6.0で新しく導入されました。

npm install --save-dev @angular-devkit/build-angular

または、

yarn add @angular-devkit/build-angular --dev

196
Ritwick Dey
npm update

それは魅力のように働きました。

39
Ajay Takur

角度6以上

私にとっての解決策は 

npm install

ng update

そして最後に

npm update

16
user9964622

npm installnpm installと入力して実行するだけです。プロジェクトはエラーなしで実行されます。またはnpm install --save-dev @angular-devkit/build-angularを使用することもできます。

3
Thisuri

次のコマンドが機能しない場合は、

npm install --save-dev @angular-devkit/build-angular

次にプロジェクトフォルダに移動して次のコマンドを実行します。

npm install --save @angular-devkit/build-angular

上記の答えはすべて正しいのですが、私にとってはうまくいきませんでした。私がこの仕事をすることができた唯一の方法は次のステップ/コマンドによることでした:

npm uninstall -g @angular/[email protected]
npm cache clean --force
npm install -g @angular/cli@latest
npm install node-sass -g
ng new MY_PROJECT_NAME
cp -r from_my_old_project to_new_MY_PROJECT_NAME
2
grepit

私はほんの少し前に同じ問題に苦しんでいました。私のプロジェクトはv-1.6.0のAngular-Cliを使用して生成されました。

1. npm update -g @angular/cli

2. editing my package.json changing the line
    "@angular/cli": "1.6.0",
      to
    "@angular/cli": "^1.6.0",

3. npm update

私の助けが効果的であることを願っていますツ

2
user10780188

Angular 7でも同じ問題が発生しました。次のコマンドを実行するだけでエラーが解決しました。

npm install --save-dev @angular-devkit/build-angular
2

これを最初に試してください

npm install --save-dev @angular-devkit/build-angular

不足しているパッケージに何らかのエラーが再度発生した場合

npm install
2

次のコマンドを実行するだけでエラーが解決しました

  • ng update @angular/cli @angular/core
  • npm uninstall @angular-devkit/build-angular
  • npm install --save-dev @angular-devkit/build-angular

    上記のコマンドでこのエラーを解決できなかった場合、ノードのバージョンを更新します

    • npm update npm -g
1
Rajnikant

ノードをv9からv10にアップグレードした後も、私は今日同じ問題を抱えていました。
私の環境はdockerによって設定されているので、DockerFileからこのコマンドを削除しなければなりませんでした。

npm link @angular/cli

Nodeがインストールされているディレクトリへのシンボリックリンクを作成します。
その中のangular/cliモジュールは私のプロジェクトのnode_modulesディレクトリにあるものと同じバージョンではないと思います、そしてこれは問題を引き起こします。

1
v.nivuahc

これを試して。それは私のために働いた

npm uninstall -g @angular/cli
npm cache verify
npm install -g @angular/cli@next
1
Dinesh Shaw

明示的にdevDependenciesを取得する必要があります。

npm i --only=dev
1
sachq

ng serveのようなコマンドを実行すると、ローカル版の@ angular/cliが使用されます。そのため、まず@ angular/cliの最新バージョンをローカルに(-gフラグなしで)インストールします。その後、ng update @angular/cliコマンドを使用してcliを更新します。これで問題は解決するはずです。ありがとう

このリンクは、あなたがAngularプロジェクトをアップデートしている場合に役立つかもしれません https://update.angular.io/ /

1
Tibin Thomas

残念ながら、提供されたソリューションのどれもが私のために完全には機能しませんでした、しかしgrepitの答えは私が次のステップをするように促しました。私は私のOS(Windows 10)を介してnode.jsをアンインストールし、それを再度インストールしました。その後、Angular CLIをインストールしました。それから新しいプロジェクトを作成し、そして私の古いプロジェクトのsrcファイルをこの新しいものにコピーするとエラーは消えました。

手順は次のとおりです。

  1. あなたのOSからnode.jsをアンインストールし、それをもう一度インストールしてください
  2. npm install -g @angular/cli
  3. プロジェクトの名前をYOUR_PROJECT_NAME.oldに変更します
  4. ng new YOUR_PROJECT_NAME
  5. このHello Worldプロジェクト(ng serve)を実行して、エラーが発生しないようにしてください。
  6. xcopy YOUR_PROJECT_NAME.old\src\*.* YOUR_PROJECT_NAME\src /s
    これはWindows版のコピーです。ご自身のOSに基づいて変更してください。
0
Ahmad
npm install --save-dev @angular-devkit/build-angular@latest

私のためにそれを解決しました。

0
Lexy Feito
  • Node_modulesを削除します。 
  • Npm cache clean --verifyを使用してキャッシュをクリアします。 
  • その後、npmをもう一度インストールします。

私にとっては魅力のように働きます。

0
Arslan Mir

このエラーは通常、angularプロジェクトが完全に構成されていない場合に発生します。

これは動作します

npm install --save-dev @angular-devkit/build-angular

npm install
0
Kshitij Shukla

次を実行すると私のために働いた npm audit fix --force 

0
Geared4IT

Package-lock.jsonを削除して、もう一度npm installを実行してください。それは問題を解決するはずです。

**この修正は、ng newを使用してAngular 6アプリを作成し、他の依存関係をインストールした後にこのエラーが発生した場合に適しています。

0
Rut Shah

これを試してください。

npm install

npm update

if it's shows something like this. 

修正するにはnpm audit fixを、詳細についてはnpm auditを実行してください。

それを行う!

0
Elshan

それは私のために働いている、コミットしてから:

ng update @angular/cli @angular/core
npm install --save-dev @angular/cli@latest
0
Andrey
Following commands works 
npm install
ng update
-You may see the message  "We analyzed your package.json and everything seems to be in order. Good work!"
npm update

Then try dev build 
ng build 
I got the error with type script, downgraded to 
npm install TypeScript@">=3.1.1 <3.2

ng build --prod 

All success with prod build. 

Below is the working combination 

ng --version

Package                           Version
-----------------------------------------------------------
@angular-devkit/architect         0.11.0
@angular-devkit/build-angular     0.11.0
@angular-devkit/build-optimizer   0.11.0
@angular-devkit/build-webpack     0.11.0
@angular-devkit/core              7.1.0
@angular-devkit/schematics        7.1.0
@angular/cli                      7.1.0
@ngtools/webpack                  7.1.0
@schematics/angular               7.1.0
@schematics/update                0.11.0
rxjs                              6.3.3
TypeScript                        3.1.6
webpack                           4.23.1
0

Solution

CLIのCommandの下で実行します。

  • npmインストール
0

あなたの開発者の依存関係の下に@angular-devkit/build-angularを追加すればそれは機能するでしょう、あるいはあなたは実行することもできます 

npm install --save-dev @angular-devkit/build-angular

0
Mohit Jain

上記のすべての答えを試してみましたが、どれも私にはうまくいきません。 Angular-CLIのバージョンをダウングレードする必要がありました。コマンドng --versionと結果を実行します。

@angular-devkit/architect          0.10.7
@angular-devkit/build-angular      0.10.7
@angular-devkit/build-ng-packagr   0.10.7
@angular-devkit/build-optimizer    0.10.7
@angular-devkit/build-webpack      0.10.7
@angular-devkit/core               7.0.7 <-- notice this!
@angular-devkit/schematics         8.2.1
@angular/cli                       8.2.1 <-- and this!
@ngtools/json-schema               1.1.0
@ngtools/webpack                   7.0.7
@schematics/angular                8.2.1
@schematics/update                 0.802.1
ng-packagr                         4.7.1
rxjs                               6.3.3
TypeScript                         3.1.6
webpack                            4.19.1

Package.jsonを開き、CLIのバージョンを定義する行を検索します。

...
"devDependencies": {
    "@angular-devkit/build-angular": "~0.10.0",
    "@angular-devkit/build-ng-packagr": "~0.10.0",
    "@angular/cli": "~8.2.0" -- I changed here to ~7.0.7
...}
...

@angular/cliのバージョンを〜7.0.7に変更します。次にnpm uninstall @angular/cliを実行し、npm install -g angular-cli@~7.0.7を実行して再インストールします

0
dellasavia

私の場合、問題は依存関係の欠如によるものです。私が電話するのを忘れていたので、なぜ依存関係が欠けているのですか?

npmインストール

上記のコマンドを呼び出した後、必要なすべての依存関係がnode_modulesにロードされ、それ以上問題になりません

0
Chi Cuong Le