web-dev-qa-db-ja.com

既存のAngularプロジェクトをローカルで実行

私はAngularを初めて使い、既存のプロジェクトをAngularのマシンで実行しようとしています。多くのテストを行い、多くの記事に従いましたが、プロジェクトを実行できません。

次のようなプロジェクトファイルがあります。

enter image description here

Nodejsをシステムにインストールしました。そして、記事ごとに次の指示に従いました。

リポジトリにディレクトリを変更します

cd myproject

プロジェクトのreadmeファイルに従ってCliをインストールします。

npm install -g @ angular/cli @ 1.3.2

npmでレポをインストールする

npmインストール

typeScriptタイピングをインストールする

npm runtypings-install-エラー:npm ERR!不足しているスクリプト:タイピングインストール

次に、私は次を試してください:

npm install --global次の場合:

webpack (npm install --global webpack)
webpack-dev-server (npm install --global webpack-dev-server)
karma (npm install --global karma-cli)
protractor (npm install --global protractor)
typings (npm install --global typings)
TypeScript (npm install --global TypeScript)

サーバーを起動する

npm start

-次のような複数のエラーメッセージが表示されます。

npm ERR! code ELIFECYCLE

-このために、「npm cache clean」を試し、「node_modules」を削除してから、「npm install --save」を使用してパッケージを再度インストールしました

その後、再試行しました:npm startそれは私に同じエラーを与えた "npm ERR! code ELIFECYCLE "

また、このエラーメッセージ:

Cannot find module 'webpack/lib/node/NodeTemplatePlugin'

このために、「npm uninstall -g webpack」を試してから、npm install --save-dev webpack webpack-cli html-webpack-plugin webpack-dev-server webpack-dev-middleware from this: Error:モジュール 'webpack/lib/node/NodeTemplatePlugin'が見つかりません

もう一度実行してみました:

今回は次のエラーが発生しました:

ERROR in ./node_modules/raw-loader!./node_modules/@angular/cli/node_modules/post
css-loader/lib??embedded!./node_modules/sass-loader/lib/loader.js??ref--8-3!./sr
c/styles.scss
Module build failed: Error: Cannot find module 'node-sass'

このため "Cannot find module 'node-sass' "もう一度検索しました:

次のコマンドが見つかりました:npm install node-sass

私はそれを試した後、再び起動しようとしました

ERROR in No NgModule metadata found for 'AppModule'.

そして、このために私はgit cli issues 8798から以下を試しました

node_modulesフォルダーを削除します

rm -rf node_modules

webpackを削除します

npm remove webpack

きれいなnpm cahe

npm cache clean --force

angular cliの最新バージョンをインストールする

npm install --save-dev @angular/cli@latest

依存関係をインストールする

npm install

今ではただのテストです

npm start our ng serve

これで、ローカルワークスペースファイル( 'angular.json')が見つからず、まったく機能しなくなりました。これを解決するには:ng update @angular/cli --migrate-only --from=1.7.4

これはエラーを削除します:「ローカルワークスペースファイル( 'angular.json')が見つかりませんでした」

ERROR in src/app/web-player/albums/album-context-menu/album-context-menu.compon
nt.ts(13,14): error TS2515: Non-abstract class 'AlbumContextMenuComponent' does
not implement inherited abstract member 'getAllTracks' from class 'ContextMenuC
mponent<Album>'.
src/app/web-player/artists/artist-context-menu/artist-context-menu.component.ts
13,14): error TS2515: Non-abstract class 'ArtistContextMenuComponent' does not
mplement inherited abstract member 'getAllTracks' from class 'ContextMenuCompon
nt<Artist>'.
src/app/web-player/context-menu/context-menu.component.ts(58,34): error TS2304:
Cannot find name 'TrackList'.
src/app/web-player/playlists/playlist-context-menu/playlist-context-menu.compon
nt.ts(15,14): error TS2515: Non-abstract class 'PlaylistContextMenuComponent' d
es not implement inherited abstract member 'getAllTracks' from class 'ContextMe
uComponent<Playlist>'.

ここで何が欠けていますか? 3日間から多くの記事を試しましたが、実行できません。

また、さまざまな種類の警告とメッセージが表示されます。 enter image description here

プロジェクトのRead Meファイル:

# Client

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.3.2.

## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `-prod` flag for a production build.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
Before running the tests make sure you are serving the app via `ng serve`.

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

Package.jsonファイル:

{
  "name": "client",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve --proxy-config proxy.conf.json --Host 0.0.0.0",
    "build": "ng build --prod --sourcemaps --build-optimizer",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
  "dependencies": {
    "@angular/animations": "^5.1.2",
    "@angular/common": "^5.1.2",
    "@angular/compiler": "^5.1.2",
    "@angular/core": "^5.1.2",
    "@angular/forms": "^5.1.2",
    "@angular/http": "^5.1.2",
    "@angular/platform-browser": "^5.1.2",
    "@angular/platform-browser-dynamic": "^5.1.2",
    "@angular/router": "^5.1.2",
    "bootstrap": "^4.0.0-beta",
    "chart.js": "^2.7.0",
    "copy-to-clipboard": "^3.0.8",
    "core-js": "^2.5.1",
    "hammerjs": "^2.0.8",
    "moment": "^2.18.1",
    "ng-lazyload-image": "^3.3.3",
    "ngx-color-picker": "^4.3.4",
    "normalize.css": "^7.0.0",
    "perfect-scrollbar": "^0.8.1",
    "popper.js": "^1.12.5",
    "raven-js": "^3.18.1",
    "rxjs": "^5.4.2",
    "svg4everybody": "^2.1.4",
    "tooltip.js": "^1.1.5",
    "zone.js": "^0.8.18"
  },
  "devDependencies": {
    "@angular/cli": "^1.6.2",
    "@angular/compiler-cli": "^5.1.2",
    "@angular/language-service": "^5.1.2",
    "@types/hammerjs": "^2.0.35",
    "@types/jasmine": "~2.5.53",
    "@types/jasminewd2": "^2.0.3",
    "@types/node": "~6.0.60",
    "@types/popper.js": "^1.10.1",
    "@types/youtube": "0.0.31",
    "@types/clipboard": "^1.5.35",
    "cheerio": "^1.0.0-rc.2",
    "codelyzer": "~3.1.1",
    "gulp": "^3.9.1",
    "gulp-clean": "^0.3.2",
    "gulp-filter": "^5.0.0",
    "gulp-rename": "^1.2.2",
    "gulp-svgmin": "^1.2.3",
    "gulp-svgstore": "^6.1.0",
    "jasmine-core": "~2.6.2",
    "jasmine-spec-reporter": "~4.1.0",
    "karma": "^1.7.1",
    "karma-chrome-launcher": "~2.1.1",
    "karma-cli": "~1.0.1",
    "karma-coverage-istanbul-reporter": "^1.2.1",
    "karma-jasmine": "~1.1.0",
    "karma-jasmine-html-reporter": "^0.2.2",
    "material-design-icons": "^3.0.1",
    "protractor": "~5.1.2",
    "ts-node": "~3.2.0",
    "tslint": "~5.7.0",
    "TypeScript": "~2.4.2",
    "webpack-bundle-analyzer": "^2.9.0"
  }
}
7
mubashermubi

次のコマンドを実行します

 npm uninstall -g @angular/cli
 npm cache verify
 npm install -g @angular/cli@next
 npm update

それから

 ng serve 

今はうまくいくと思います。エラーが発生した場合はコメントしてください。

3

試してくださいng-serve --openプロジェクトをコンパイルし、ブラウザで直接開きます

1
Kalpesh Kashyap

ファイルの名前を変更する.angular-cli.jsonからangular.jsonそしてng serve --openコマンド。

0
NaveenT