2017-05-08 94 views
-3

我用了幾個命令,以更新的角度2,如Angular 2的最新版本是什麼?如何更新它?

npm update --save 

在的package.json角2的版本是2.0.0^- beta.21,這是最新的版本?如果沒有,那麼我怎樣才能將其更新到最新版本

這裏是我的package.json文件

{ 
    "name": "angular2-quickstart", 
    "version": "1.0.0", 
    "scripts": { 
    "start": "concurrent \"npm run tsc:w\" \"npm run lite\" ", 
    "tsc": "tsc", 
    "tsc:w": "tsc -w", 
    "lite": "lite-server", 
    "typings": "typings", 
    "postinstall": "typings install" 
    }, 
    "license": "ISC", 
    "dependencies": { 
    "angular2": "^2.0.0-beta.21", 
    "es6-promise": "^4.1.0", 
    "es6-shim": "^0.35.3", 
    "reflect-metadata": "^0.1.10", 
    "rxjs": "^5.3.1", 
    "systemjs": "^0.20.12", 
    "zone.js": "^0.8.10" 
    }, 
    "devDependencies": { 
    "@angular/cli": "^1.0.2", 
    "concurrently": "^3.4.0", 
    "lite-server": "^2.1.0", 
    "typescript": "^2.3.2" 
    } 
} 

回答

3

最近角的版本版本4

安裝4個版本,從版本2

所以遷移,如果你想安裝最新版本的角度,你應該去版本4,這將可能意味着從版本migrattion 到版本。

爲了實現這個目標,遵循此處顯示的步驟:

https://angular-update-guide.firebaseapp.com/

更多有關版本2比4版以及如何遷移到4.0版本,這可能是有益的:

Is it worth to migrate from Angular 2 to Angular 4?

更新最新版本的Angular版本2

您應該運行此命令:

npm update -D && npm update -S 

檢查這個非常有用的帖子更新您的版本2:

How do I correctly upgrade angular 2 (npm) to the latest version?


我希望這是有幫助,祝你好運編碼祝你有愉快的一天! ;)

相關問題