紙書出版了,比網上內容豐富充實了,歡迎你們訂購!
京東連接:item.m.jd.com/product/120…javascript
第一節:初識Angular-CLI
第二節:登陸組件的構建
第三節:創建一個待辦事項應用
第四節:進化!模塊化你的應用
第五節:多用戶版本的待辦事項應用
第六節:使用第三方樣式庫及模塊優化用
第七節:給組件帶來活力
Rx--隱藏在 Angular 中的利劍
Redux 你的 Angular 應用
第八節:查缺補漏大合集(上)
第九節:查缺補漏大合集(下)css
Angular 4 在昨天(2017-03-24)正式發佈了,個人系列教程也得更新一下。步驟略繁瑣,不用 cli 的項目反倒更簡單一些,可是 cli 平時給咱們的便利仍是不少的,升級最多半年一次而已,麻煩就麻煩點吧。html
隨着 Angular 升級到版本 4, angular-cli
也進入了 1.0
正式版。因此咱們須要先更新 angular-cli
的版本。 首先須要刪除舊的 angular-cli
,若是你的 angular-cli
是在 beta-28
以前的版本,須要在工程目錄下執行下面的命令:java
npm uninstall -g angular-cli
npm uninstall --save-dev angular-cli複製代碼
angular-cli
在 beta-28
以後改了包名,併入 @angular
的子項目,包名改爲了 @angular/cli
,因此若是是 beta-28
以後的版本,請執行下面的命令刪除:node
npm uninstall -g @angular/cli
npm uninstall --save-dev @angular/cli複製代碼
而後咱們須要安裝新的 @angular/cli
,但進行以前須要清理一下緩存:git
npm cache clean
npm install -g @angular/cli@latest複製代碼
工程根目錄下的 angular-cli.json
如今的命名前面多了一個點,變成了 .angular-cli.json
,雖然舊的命名仍被接受,但爲了保險起見,咱們仍是改一下。github
這個 .angular-cli.json
比原來的版本改動了幾個地方,第一個是 Schema,咱們須要在 "project": {
之上添加一條 Schema 的配置:chrome
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
...
},複製代碼
添加完以後,在 VSCode 中會發現 project
配置中的 version
下面出現了綠線警告,也就是說 schema 中沒有這一項,因此 version
能夠刪除了。typescript
在 main
和 test
之間插入一行配置 polyfills
:npm
"main": "main.ts",
"polyfills": "polyfills.ts",
"test": "test.ts",複製代碼
而且刪除 src/main.ts
和 src/test.ts
中的 import './polyfills.ts';
那一行。
而後把下面 "tsconfig": "tsconfig.app.json",
這句改爲下面的2行:
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",複製代碼
接下來是 environments
的那段,原來的樣子是
"environments": {
"source": "environments/environment.ts",
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}複製代碼
如今須要改爲:
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}複製代碼
如今新增了 lint 配置,在 e2e
和 test
之間加入:
"e2e": {
"protractor": {
"config": "./protractor.conf.js"
}
},
"lint": [
{
"project": "src/tsconfig.app.json"
},
{
"project": "src/tsconfig.spec.json"
},
{
"project": "e2e/tsconfig.e2e.json"
}
],
"test": {
"karma": {
"config": "./karma.conf.js"
}
},複製代碼
最後一段 defaults
那一坨改爲:
"defaults": {
"styleExt": "css", //或者 scss 根據項目狀況而定
"component": {
"inlineTemplate": false,
"spec": true
}
}複製代碼
src/tsconfig.json
須要更名成 tsconfig.app.json
並更新到下面的樣子:
{
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"lib": [
"es2016",
"dom"
],
"outDir": "../out-tsc/app",
"module": "es2015",
"baseUrl": "",
"types": []
},
"exclude": [
"test.ts",
"**/*.spec.ts"
]
}複製代碼
新增長定義單元測試配置的 src/tsconfig.spec.json
:
{
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016",
"dom"
],
"outDir": "../out-tsc/spec",
"module": "commonjs",
"target": "es5",
"baseUrl": "",
"types": [
"jasmine",
"node"
]
},
"files": [
"test.ts"
],
"include": [
"**/*.spec.ts",
"**/*.d.ts"
]
}複製代碼
將 e2e
目錄下原有的 tsconfig.json
更名成 e2e/tsconfig.e2e.json
而後更新成:
{
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016"
],
"outDir": "../out-tsc/e2e",
"module": "commonjs",
"target": "es5",
"types":[
"jasmine",
"node"
]
}
}複製代碼
在項目根目錄下新建一個 tsconfig.json
:
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"baseUrl": "src",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2016",
"dom"
]
}
}複製代碼
更新 package.json
中的軟件包版本號
在 dependencies
段落中的:
@angular
開頭的包的版本都改爲 ^4.0.0
rxjs
版本改爲 ^5.1.0
ts-helpers
zone.js
版本號更新至 ^0.8.4
在 devDependencies
段落中的:
@angular/compiler-cli
的版本改爲 ^4.0.0
@types/node
版本改爲 ~6.0.60
codelyzer
版本改爲 ~2.0.0
jasmine-core
版本號更新至 ~2.5.2
jasmine-spec-reporter
版本號更新至 ~3.2.0
karma
版本號更新至 ~1.4.1
karma-chrome-launcher
版本號更新至 ~2.0.0
karma-cli
版本號更新至 ~1.0.1
karma-jasmine
版本號更新至 ~1.1.0
"karma-jasmine-html-reporter": "^0.2.2",
"karma-coverage-istanbul-reporter": "^0.2.0",
karma-remap-istanbul
protractor
版本號更新至 ~5.1.0
ts-node
版本號更新至 ~2.0.0
tslint
版本號更新至 ~4.5.0
typescript
版本號更新至 ~2.1.0
最後更新 scripts
爲:
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},複製代碼
把 src/kama.conf.js
改爲以下:
// Karma configuration file, see link for more information
// https://karma-runner.github.io/0.13/config/configuration-file.html
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', '@angular/cli'],
plugins: [
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('@angular/cli/plugins/karma')
],
client:{
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
files: [
{ pattern: './src/test.ts', watched: false }
],
preprocessors: {
'./src/test.ts': ['@angular/cli']
},
mime: {
'text/x-typescript': ['ts','tsx']
},
coverageIstanbulReporter: {
reports: [ 'html', 'lcovonly' ],
fixWebpackSourcePaths: true
},
reporters: config.angularCli && config.angularCli.codeCoverage
? ['progress', 'coverage-istanbul']
: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
});
};複製代碼
把 src/protractor.conf.js
改爲以下
// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/docs/referenceConf.js
/*global jasmine */
const { SpecReporter } = require('jasmine-spec-reporter');
exports.config = {
allScriptsTimeout: 11000,
specs: [
'./e2e/**/*.e2e-spec.ts'
],
capabilities: {
'browserName': 'chrome'
},
directConnect: true,
baseUrl: 'http://localhost:4200/',
framework: 'jasmine',
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
print: function() {}
},
beforeLaunch: function() {
require('ts-node').register({
project: 'e2e'
});
},
onPrepare: function() {
jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } }));
}
};複製代碼
搜索 no-inferrable-types
把這行改爲:
"no-inferrable-types": [true, "ignore-params"],複製代碼
而後新增下面的規則:
"callable-types": true,
"import-blacklist": [true, "rxjs"],
"import-spacing": true,
"interface-over-type-literal": true,
"no-empty-interface": true,
"no-string-throw": true,
"prefer-const": true,
"typeof-compare": true,
"unified-signatures": true,複製代碼
接下來須要從新安裝依賴項:
rm -rf node_modules dist # Windows 用戶使用 rmdir 來刪除
npm install --save-dev @angular/cli@latest
npm install複製代碼
到此爲止,升級結束,運行 ng serve
和 ng build
一切正常。我目前只升級了第一章代碼,計劃會在 ng4tut
陸續把教程代碼都升級到 4.x
。
4.0 代碼地址:
github.com/wpcfan/awes…
2.x 代碼地址: