在本地运行现有的 Angular 项目

Posted

技术标签:

【中文标题】在本地运行现有的 Angular 项目【英文标题】:Running Existing Angular Project locally 【发布时间】:2018-10-17 04:21:26 【问题描述】:

我对 Angular 很陌生,我正在尝试在我的机器上运行一个现有的 Angular 项目。我做了很多测试并关注了很多文章。但无法运行我的项目。

我有这样的项目文件:

我在我的系统上安装了 nodejs。 并按照文章遵循以下说明:

将目录更改为我们的仓库

cd 我的项目

根据项目自述文件安装cli。

npm install -g @angular/cli@1.3.2

使用 npm 安装 repo

npm 安装

安装 TypeScript 类型

npm 运行类型安装 -- 给出错误: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 来自:Error: Cannot find module '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 缓存

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天试了很多文章都跑不了。

另外,我看到了不同类型的警告和消息。

项目中的自述文件:

# 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"
  

【问题讨论】:

你能给我们看看你的 package.json 文件吗? 是的,我添加了有问题的 package.json 文件详细信息,请查看。 @Kadioo 谢谢,但给了我错误:'sudo' 不被识别为内部或外部命令、可运行程序或批处理文件。 @Kadioo 1st 运行正确,但另一个 *npm install typescript@'>=2.4.2 @Kadioo 尝试过并且运行正确,但仍然给出了我在问题中报告的最后一个错误。 【参考方案1】:

试试ng serve --open 它将编译您的项目并直接在浏览器中打开

【讨论】:

给出:'ng-serve' 不被识别为内部或外部命令、可运行程序或批处理文件。 应该是ng serve,不带连字符 因为 angular-cli 没有全局安装尝试 "npm i angular-cli -g" 我试过了,报错如上:“找不到本地工作区文件('angular.json')” 通过 "ng new project_name" cd project_name 创建新项目并使用新项目 ng server 重试【参考方案2】:

运行以下命令

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

然后

 ng serve 

我希望它现在可以工作。如果您遇到任何错误,请发表评论。

【讨论】:

我试过了,现在它删除了错误 Local workspace file ('angular.json') could not be found 但给出了这个: 错误在 src/app/web-player/albums/album-context- menu/album-context-menu.compon nt.ts(13,14):错误 TS2515:非抽象类“AlbumContextMenuComponent”未实现继承的抽象成员。我也更新了相关细节。 天哪。现在你对角度没有任何问题,但对项目没有任何问题。这是项目的错误。可能是由于角度版本差异。那么,项目来自 git 吗?我的意思是你可以分享我的链接,我们可以帮助你。如果不显示 package.json 文件的屏幕截图。 我添加了有问题的 package.json 文件详细信息。请检查。这在 git 上不可用,如果您愿意,我可以与 gdrive 共享。 我必须在运行 ng serve 之前运行“npm install --save-dev @angular-devkit/build-angular”。否则这就像一个魅力。 如果我的 package.json 文件包含不受支持的包怎么办?【参考方案3】:

将文件.angular-cli.json重命名为angular.json并重新运行ng serve --open命令。

【讨论】:

【参考方案4】:

这应该容易得多...

按原样保存您的项目文件

运行npm install

由于您拥有package.json 文件,它将读取所有依赖项并安装它们。

如果需要,然后运行npm audit fix(终端会告诉你)。

【讨论】:

重要提示:使用正确版本的节点。否则运行时可能会出错:npm install【参考方案5】:
    在本地更改目录的路径

cd my-repo

    npm install

    ng serveng serve --open

然后你会找到本地主机。

清理缓存:

npm cache clean

【讨论】:

【参考方案6】:

我还需要设置现有的 Angular 项目。

*cli 版本根据您的 package.json 文件

npm install -g @angular/cli@1.3.2

然后

npm install

然后

ng serve

我已经测试过了,它在这里工作。

【讨论】:

以上是关于在本地运行现有的 Angular 项目的主要内容,如果未能解决你的问题,请参考以下文章

[为什么在macOS Catalina上为Angular项目运行npm install时出现这些故障?

使用刀片将 Angular5 集成到现有的 Laravel 项目中

将 ngrx/Store 集成到现有的 Angular 项目中

如何将 express 和 node 设置到现有的仅前端 Angular 2 项目中?

如何在本地主机上启用 Spring 和 Angular 2 之间的 CORS

Gradle在本地Maven存储库中找不到现有的依赖项