angular的安装过程

参考官网地址:

英文: https://angular.io

中文:http://www.angular.live

一.安装坏境:node.js和npm;

    node.js在5.x.x或以上,npm在3.x.x或以上。

    node -v 和npm -v检查安装版本。
nodenpm.png

创建一个文件:

   mkdir angular-quickstart
   cd angular-quickstart

二.装一些配置文件:

package.json

用来标记出本项目所需的 npm 依赖包。
    package.json

  {

    "name": "angular-quickstart",

    "version": "1.0.0",

    "scripts": {

    "start": "tsc && concurrently \"npm run tsc:w\" \"npm run lite\" ",

   "lite": "lite-server",

  "postinstall": "typings install",

  "tsc": "tsc",

  "tsc:w": "tsc -w",

  "typings": "typings"

    },

  "license": "ISC",

  "dependencies": {

  "@angular/common": "2.0.0",

  "@angular/compiler": "2.0.0",

  "@angular/core": "2.0.0",

  "@angular/forms": "2.0.0",

  "@angular/http": "2.0.0",

  "@angular/platform-browser": "2.0.0",

  "@angular/platform-browser-dynamic": "2.0.0",

  "@angular/router": "3.0.0",

  "@angular/upgrade": "2.0.0",

  "core-js": "^2.4.1",

  "reflect-metadata": "^0.1.3",

  "rxjs": "5.0.0-beta.12",

  "systemjs": "0.19.27",

  "zone.js": "^0.6.23",

  "angular2-in-memory-web-api": "0.0.20",

  "bootstrap": "^3.3.6"

  },

  "devDependencies": {

  "concurrently": "^2.2.0",

  "lite-server": "^2.2.2",

  "typescript": "^2.0.2",

  "typings":"^1.3.2"

    }

  }

tsconfig.json

定义了 TypeScript 编译器如何从项目源文件生成 JavaScript 代码。
  tsconfig.json

  {

    "compilerOptions": {

    "target": "es5",

    "module": "commonjs",

    "moduleResolution": "node",

    "sourceMap": true,

    "emitDecoratorMetadata": true,

  "experimentalDecorators": true,

  "removeComments": false,

  "noImplicitAny": false

  }

  }

typings.json

为那些 TypeScript 编译器无法识别的库提供了额外的定义文件。
  typings.json

  {

  "globalDependencies": {

  "core-js": "registry:dt/core-js#0.0.0+20160725163759",

  "jasmine": "registry:dt/jasmine#2.2.0+20160621224255",

  "node": "registry:dt/node#6.0.0+20160909174046"

        }

  }

systemjs.config.js

为模块加载器提供了该到哪里查找应用模块的信息,并注册了所有必备的依赖包。 它还包括文档中后面的例子需要用到的包。
  systemjs.config.js

  /**

  * System configuration for Angular samples

  * Adjust as necessary for your application needs.

  */

  (function (global) {

  System.config({

  paths: {

  // paths serve as alias

  'npm:': 'node_modules/'

  },

  // map tells the System loader where to look for things

  map: {

  // our app is within the app folder

  app: 'app',

  // angular bundles

  '@angular/core': 'npm:@angular/core/bundles/core.umd.js',

  '@angular/common': 'npm:@angular/common/bundles/common.umd.js',

  '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',

  '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',

  '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',

  '@angular/http': 'npm:@angular/http/bundles/http.umd.js',

  '@angular/router': 'npm:@angular/router/bundles/router.umd.js',

  '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',

  // other libraries

  'rxjs':                      'npm:rxjs',

  'angular-in-memory-web-api': 'npm:angular-in-memory-web-api',

  },

  // packages tells the System loader how to load when no filename and/or no extension

  packages: {

  app: {

  main: './main.js',

  defaultExtension: 'js'

  },

  rxjs: {

  defaultExtension: 'js'

  },

  'angular-in-memory-web-api': {

  main: './index.js',

  defaultExtension: 'js'

  }

  }

  });

  })(this);

三.npm install

创建完文件后面再angular-quickstart目录下npm install;
  如果在运行 npm install之后没有出现 typings目录,你就需要通过命令手动安装它:
  npm run typings install

四.<font face="微软雅黑">mkdir app</font>创建app文件

(1)文件内创建跟模块app/app.module.ts

  import { NgModule }      from '@angular/core';

  import { BrowserModule } from '@angular/platform-browser';

  @NgModule({

        imports:      [ BrowserModule ]

  })

  export class AppModule { }

(2)根组件app/app.component.ts

  import { Component } from '@angular/core';@Component({  selector: 'my-app',  template: '

  My First Angular App

  '})
  export class AppComponent { }
再次编辑app/app.module.ts文件
   import { NgModule }      from '@angular/core';

  import { BrowserModule } from '@angular/platform-browser';

  import { AppComponent }  from './app.component';

  @NgModule({

  imports:      [ BrowserModule ],

  declarations: [ AppComponent ],

  bootstrap:    [ AppComponent ]

  })

  export class AppModule { }

(3)需要main.ts文件加载根组件

  import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

  import { AppModule } from './app.module';

  const platform = platformBrowserDynamic();

  platform.bootstrapModule(AppModule);

五.在外边的根目录创建index.html

  <html>
    <head>
      <title>Angular QuickStart</title>
      <meta charset="UTF-8">
      <meta name="viewport" content="width=device-width, initial-scale=1">
      <link rel="stylesheet" href="styles.css">
      <!-- 1. Load libraries -->
       <!-- Polyfill(s) for older browsers -->
      <script src="node_modules/core-js/client/shim.min.js"></script>
      <script src="node_modules/zone.js/dist/zone.js"></script>
      <script src="node_modules/reflect-metadata/Reflect.js"></script>
      <script src="node_modules/systemjs/dist/system.src.js"></script>
      <!-- 2. Configure SystemJS -->
      <script src="systemjs.config.js"></script>
      <script>
        System.import('app').catch(function(err){ console.error(err); });
      </script>
    </head>
    <!-- 3. Display the application -->
    <body>
      <my-app>Loading...</my-app>
    </body>
  </html>
创建一个style.css文件
  /* Master Styles */
  h1 {
    color: #369;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 250%;
  }
  h2, h3 {
    color: #444;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
  }
  body {
    margin: 2em;
  }

六.在根目录下执行npm start 就能启动angular2的应用

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 158,847评论 4 362
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,208评论 1 292
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 108,587评论 0 243
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 43,942评论 0 205
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,332评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,587评论 1 218
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,853评论 2 312
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,568评论 0 198
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,273评论 1 242
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,542评论 2 246
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,033评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,373评论 2 253
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,031评论 3 236
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,073评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,830评论 0 195
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,628评论 2 274
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,537评论 2 269

推荐阅读更多精彩内容