Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/angular/26.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Angular 5编译速度非常慢,有时会耗尽内存_Angular_Typescript_Npm_Angular5 - Fatal编程技术网

Angular 5编译速度非常慢,有时会耗尽内存

Angular 5编译速度非常慢,有时会耗尽内存,angular,typescript,npm,angular5,Angular,Typescript,Npm,Angular5,我们有一个中等大小的角度应用程序。FWIW,Angular4构建生成了4MB大小的app.js。我们不使用Angular CLI。当我们刚开始的时候,它是不可用的;然后我们似乎不需要它。构建时间(npm启动)大约需要2分钟 现在我们升级到Angular 5。同一版本需要一个多小时,在某些机器上报告内存不足。我在任务管理器中注意到,npm分配的内存在崩溃之前确实会增加到2GB左右。不确定是命令行会话的2GB限制,还是物理内存不足(您只能进行这么多小时的实验:) 不管怎样,有没有一种方法可以看出是什

我们有一个中等大小的角度应用程序。FWIW,Angular4构建生成了4MB大小的app.js。我们不使用Angular CLI。当我们刚开始的时候,它是不可用的;然后我们似乎不需要它。构建时间(
npm启动
)大约需要2分钟

现在我们升级到Angular 5。同一版本需要一个多小时,在某些机器上报告
内存不足
。我在任务管理器中注意到,
npm
分配的内存在崩溃之前确实会增加到2GB左右。不确定是命令行会话的2GB限制,还是物理内存不足(您只能进行这么多小时的实验:)

不管怎样,有没有一种方法可以看出是什么导致npm速度缓慢

平台:Windows10,NPM5.5.1

更新:配置文件:

package.json

{
  "name": "myapp",
  "version": "0.0.1",
  "description": "my awesome application",
  "scripts": {
    "start": "webpack-dev-server --inline --debug --progress --port 10071",
    "test": "karma start",
    "build": "rimraf dist && webpack -p --config ./config/webpack.prod.js --progress --profile --bail"
  },
  "dependencies": {
    "@angular/animations": "^5.0.1",
    "@angular/cdk": "^5.0.0-rc0",
    "@angular/common": "^5.0.1",
    "@angular/compiler": "^5.0.1",
    "@angular/core": "^5.0.1",
    "@angular/flex-layout": "^2.0.0-beta.10-4905443",
    "@angular/forms": "^5.0.1",
    "@angular/http": "^5.0.1",
    "@angular/material": "^5.0.0-rc0",
    "@angular/platform-browser": "^5.0.1",
    "@angular/platform-browser-dynamic": "^5.0.1",
    "@angular/platform-server": "^5.0.1",
    "@angular/router": "^5.0.1",
    "@ng-idle/core": "^2.0.0-beta.12",
    "@ng-idle/keepalive": "^2.0.0-beta.12",
    "@types/html2canvas": "^0.5.35",
    "@types/jspdf": "^1.1.31",
    "angular-svg-round-progressbar": "^1.2.0",
    "angular2-moment": "^1.7.0",
    "bootstrap": "^3.3.7",
    "core-js": "^2.5.1",
    "font-awesome": "^4.7.0",
    "hammerjs": "^2.0.8",
    "html2canvas": "^0.5.0-beta4",
    "jquery": "^3.2.1",
    "jspdf": "^1.3.5",
    "jspdf-autotable": "^2.3.2",
    "material-design-icons": "^3.0.1",
    "mime-types": "^2.1.17",
    "moment": "^2.19.1",
    "ngx-perfect-scrollbar": "^5.0.0",
    "primeng": "^5.0.0-rc.0",
    "rxjs": "^5.5.2",
    "zone.js": "^0.8.18"
  },
  "devDependencies": {
    "@angular/compiler-cli": "^5.0.1",
    "@types/jasmine": "^2.6.2",
    "@types/node": "^8.0.47",
    "angular2-template-loader": "^0.6.2",
    "awesome-typescript-loader": "^3.3.0",
    "css-loader": "^0.28.7",
    "extract-text-webpack-plugin": "^3.0.2",
    "file-loader": "^1.1.5",
    "html-loader": "^0.5.1",
    "html-webpack-plugin": "^2.30.1",
    "jasmine-core": "^2.8.0",
    "karma": "^1.7.1",
    "karma-jasmine": "^1.1.0",
    "karma-phantomjs-launcher": "^1.0.4",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-webpack": "^2.0.5",
    "node-sass": "^4.6.0",
    "null-loader": "^0.1.1",
    "phantomjs-prebuilt": "^2.1.16",
    "raw-loader": "^0.5.1",
    "rimraf": "^2.6.2",
    "sass-loader": "^6.0.6",
    "style-loader": "^0.19.0",
    "typescript": "^2.6.1",
    "url-loader": "^0.6.2",
    "webpack": "^3.8.1",
    "webpack-dev-server": "^2.9.4",
    "webpack-merge": "^4.1.1"
  }
}
tsconfig.json

{
    "compilerOptions": {
        "target": "es5",
        "module": "commonjs",
        "moduleResolution": "node",
        "sourceMap": true,
        "emitDecoratorMetadata": true,
        "experimentalDecorators": true,
        "removeComments": false,
        "noImplicitAny": true,
        "suppressImplicitAnyIndexErrors": true,
        "noStrictGenericChecks": true,
        "lib": [ "es2015", "dom" ],
        "typeRoots": [
            "./node_modules/@types"
        ],
        "types": [
            "html2canvas",
            "jasmine",
            "node",
            "jspdf"
        ]
    }
}

罪魁祸首是Typescript的版本。一旦我降级到2.5.1,它就加速了!角度4和角度5上的行为相同。

尝试增加node.js内存大小,使用--max old space size={{memory in MB}

我的构建脚本如下所示

"build": "node --max-old-space-size=3072 ./node_modules/@angular/cli/bin/ng build --aot --prod --build-optimizer && cp .htaccess dist/.htaccess",

你能添加配置文件吗?这也发生在我的中型应用程序上,使用Angular CLI和Angular 5+。@Aravind-added。谢谢你,你正在使用网页包模块绑定器?是的。很抱歉,我想说的是,我已经从2.5.3版本降级,但它仍然像以前一样慢。有什么事要做吗?谢谢。一般来说,解决“内存不足”问题(正确)
——最大旧空间大小(下划线,而不是破折号)是最常见的解决方案。然而,在本例中,罪魁祸首是Typescript的特定版本。一年前的问题;所有版本都更改了好几次-当前版本没有这个问题。我的版本仍然失败,如果我给它2000 MB内存以下的话