【问题标题】:Angular boot error npm ERR! code ELIFECYCLE角度启动错误 npm ERR!代码生命周期
【发布时间】:2019-09-13 09:04:47
【问题描述】:

我想启动 Angular 项目时遇到这个问题

尝试安装插件

{
  "name": "portal-app",
  "version": "0.0.0",
  "license": "MIT",
  "scripts": {
    "ng": "ng",
    "start": "ng serve --proxy-config proxy.config.json",
    "build": "ng build",
    "test": "ng test",
    "lint": "ng lint",
    "e2e": "ng e2e"
  },
  "private": true,
 "dependencies": {
    "@angular/animations": "^5.0.0",
    "@angular/common": "^5.0.0",
    "@angular/compiler": "^5.0.0",
    "@angular/core": "^5.0.0",
    "@angular/forms": "^5.0.0",
    "@angular/http": "^5.0.0",
    "@angular/platform-browser": "^5.0.0",
    "@angular/platform-browser-dynamic": "^5.0.0",
    "@angular/router": "^5.0.0",
    "bootstrap": "^3.3.7",
    "core-js": "^2.4.1",
    "rxjs": "^5.5.2",
    "zone.js": "^0.8.14"
  },
  "devDependencies": {
    "@angular/cli": "^1.6.3",
    "@angular/compiler-cli": "^5.0.0",
    "@angular/language-service": "^5.0.0",
    "@types/jasmine": "~2.5.53",
    "@types/jasminewd2": "~2.0.2",
    "@types/node": "~6.0.60",
    "codelyzer": "^4.0.1",
    "jasmine-core": "~2.6.2",
    "jasmine-spec-reporter": "~4.1.0",
    "karma": "~1.7.0",
    "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",
    "protractor": "~5.1.2",
    "ts-node": "~3.2.0",
    "tslint": "~5.7.0",
    "typescript": "~2.4.2"
  }
}

您必须在 angular-cli 项目中才能使用 服务命令。

npm 错误!代码 ELIFECYCLE npm 错误! errno 1 npm 错误!门户应用@0.0.0 开始: ng serve --proxy-config proxy.config.json npm ERR!出口 状态 1 npm 错误! npm 错误!在 portal-app@0.0.0 启动时失败 脚本。 npm 错误!这可能不是 npm 的问题。有 上面可能有额外的日志输出。 npm WARN 本地 package.json 存在,但缺少 node_modules,您是要安装吗?

npm 错误!可以在以下位置找到此运行的完整日志:npm ERR!
C:\Users\User\AppData\Roaming\npm-cache_logs\2019-04-24T06_32_19_277Z-debug.log

进程以退出代码 1 结束

【问题讨论】:

  • 您必须在 angular-cli 项目中才能使用 serve 命令。什么不清楚?请注意,如果你真的在使用 AngularJS,那么你不应该使用 ng,它是 Angular 的工具,而不是 AngularJS 的工具。

标签: json angular npm


【解决方案1】:

在我的情况下,我在运行 ng test --karma-config=karma.conf.js --code-coverage 时遇到了这种类型的错误,问题的原因是代码中的 console.log 语句

【讨论】:

    【解决方案2】:

    您的错误是明确且有意义的:您需要在项目中运行您的命令。在启动 npm 脚本之前,您可能需要使用更改目录命令将命令提示符放在正确的位置。

    所以:

    cd /path/to/projectDirectory
    npm start
    

    应该做的伎俩。

    【讨论】:

      猜你喜欢
      • 2020-12-23
      • 2021-07-10
      • 2023-01-12
      • 1970-01-01
      • 2018-09-03
      • 2017-12-27
      • 1970-01-01
      • 1970-01-01
      • 2020-09-09
      相关资源
      最近更新 更多