.Net Core + Angular2 環境搭建

来源:http://www.cnblogs.com/xiaoxiaoii/archive/2016/11/14/6062123.html
-Advertisement-
Play Games

環境搭建: 1)node.js版本>5.0,NPM版本>3.0,TypeScript版本>2.0(全裝最新版就好了) 2)安裝NTVS 1.2(node tools for vs),TSVS dev 1.4(TS for VS) 3)構建package.json,tsconfig.json,gulp ...


環境搭建: 1)node.js版本>5.0,NPM版本>3.0,TypeScript版本>2.0(全裝最新版就好了) 2)安裝NTVS 1.2(node tools for vs),TSVS dev 1.4(TS for VS) 3)構建package.json,tsconfig.json,gulp.js文件   1、package.json
{
  "name": "template.angular2",
  "version": "1.0.0",
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/angular/angular.io/blob/master/LICENSE"
    }
  ],
  "dependencies": {
    "@angular/common": "~2.1.1",
    "@angular/compiler": "~2.1.1",
    "@angular/core": "~2.1.1",
    "@angular/forms": "~2.1.1",
    "@angular/http": "~2.1.1",
    "@angular/platform-browser": "~2.1.1",
    "@angular/platform-browser-dynamic": "~2.1.1",
    "@angular/router": "~3.1.1",
    "@angular/upgrade": "~2.1.1",
    "core-js": "^2.4.1",
    "reflect-metadata": "^0.1.8",
    "rxjs": "5.0.0-beta.12",
    "systemjs": "0.19.39",
    "zone.js": "^0.6.25"
  },
  "devDependencies": {
    "@types/core-js": "^0.9.34",
    "@types/node": "^6.0.45",
    "gulp": "^3.9.1",
    "del": "^2.2.2"
  }
}

    2、tsconfig.json

{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "sourceMap": true,
    //需要這個才能使用註釋器
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "noImplicitAny": false
  },
  "compileOnSave": true
}

    3、gulp.js

var gulp = require('gulp');
var del = require('del');

var paths = {
    angularPatch: [
        "node_modules/core-js*/**/*",
        "node_modules/zone.js*/**/*",
        "node_modules/reflect-metadata*/*.js",
         "node_modules/reflect-metadata*/*.map",
        "node_modules/systemjs*/dist*/*.js",
         "node_modules/systemjs*/dist*/*.map"
    ],
    angularSrc: [
        "node_modules/@angular/core/bundles/core.umd.js",
        "node_modules/@angular/common/bundles/common.umd.js",
        "node_modules/@angular/compiler/bundles/compiler.umd.js",
        "node_modules/@angular/platform-browser/bundles/platform-browser.umd.js",
        "node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js",
        "node_modules/@angular/http/bundles/http.umd.js",
        "node_modules/@angular/router/bundles/router.umd.js",
        "node_modules/@angular/forms/bundles/forms.umd.js",
        "node_modules/@angular/upgrade/bundles/upgrade.umd.js"
        //"node_modules/",
    ],
    rxjsSrc: "node_modules/rxjs/**/*",
    TSSrc:"Scripts/**/*.js",
    TSTarget:"wwwroot/js",
    Tartget:"wwwroot/lib"
}
//手工構建一次
gulp.task("copyangularfiles", function () {
    //gulp.src(paths.angularSrc).pipe(gulp.dest(paths.Tartget));

    paths.angularSrc.forEach(function (path) {
        var tpath = path.replace("node_modules", paths.Tartget).split('/');
        gulp.src(path).pipe(gulp.dest(tpath.slice(0, tpath.length - 1).join('/')));
    });
    gulp.src(paths.rxjsSrc).pipe(gulp.dest(paths.Tartget + "/rxjs"));
    gulp.src(paths.angularPatch).pipe(gulp.dest(paths.Tartget + "/patch"));

});
//加入任務->綁定->生成前
gulp.task("copytsfiles", function () {
    gulp.src(paths.TSSrc).pipe(gulp.dest(paths.TSTarget));
})

gulp.task('default', ['copytsfiles'], function () {
    // place code for your default task here
});

 

4)在項目根目錄建立 Scripts 文件夾 5)在wwwroot文件夾建立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:': 'lib/'
        },
        // map tells the System loader where to look for things
        map: {
            // our app is within the app folder
            app: 'js',
            // 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',
            '@angular/upgrade': 'npm:@angular/upgrade/bundles/upgrade.umd.js',
            // other libraries
            'rxjs': 'npm:rxjs'
        },
        // 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'
            }
        }
    });
})(this);

 

6)修改Views/Shared/_Layout.cshtml,刪除對site.js的引用 7)修改Views/Home/Index.cshtml,增加/構建@section scripts 腳本段
@section scripts{

    <!-- 1. Load libraries -->
    <!-- Polyfill(s) for older browsers -->

    <script src="~/lib/patch/core-js/client/shim.min.js"></script>

    <script src="~/lib/patch/zone.js/dist/zone.js"></script>

    <script src="~/lib/patch/reflect-metadata/Reflect.js"></script>

    <script src="~/lib/patch/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>

}

 

8)環境搭建完成,程式入口文件 wwwroot/js/main.js(Scripts/main.ts)
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ipcs 1. 命令格式 ipcs [resource-option] [output-format] ipcs [resource-option] -i id 2. 命令功能 提供IPC設備的信息 3. 使用方法 resource選項: ipcs -m 查看系統共用記憶體信息 ipcs -q 查看系 ...
  • 1.命令格式 find [-H] [-L] [-P] [-D debugopts] [-Olevel] [path...] [expression] 2. 命令功能 在文件目錄層級中查找文件並做相應的處理 3. 命令選項 -name finename 按照文件名查找文件,文件名可使用通配符 -per ...
  • 概述 ASP.NET Core 1.0是ASP.NET的一個重要的重新設計。 例如,在ASP.NET Core中,使用Middleware編寫請求管道。 ASP.NET Core中間件對HttpContext執行非同步邏輯,然後可選地調用序列中的下一個中間件或直接終止請求。 您通常通過在Configu... ...
  • 最近悟出來一個道理,在這兒分享給大家:學歷代表你的過去,能力代表你的現在,學習代表你的將來。 十年河東十年河西,莫欺少年窮 學無止境,精益求精 最近在做自學MVC,遇到的問題很多,索性一點點總結下。 MVC4數據驗證: 本例以程式為例就行說明: MVC特性,本篇主要講解:Exclude、Includ ...
  • 上個月免費幫別人做事,就一直在服務員和程式員中來回切換,所以好多事情都弄得亂糟糟的,家裡也是亂七八糟的,所以學習這一塊也放了一段時間。 剛剛開始當服務員的時間看到了形形色色的人,覺得很好玩,他們每個人像代碼又不像,有的很簡單,有的很美觀,有的很複雜,有的還很神奇,可是他們確可以來回切換,很簡單的能瞬 ...
  • 一:枚舉的含義 枚舉是用戶定義的整數類型。在聲明一個枚舉時,要指定該枚舉的示例可以包含的一組可接受的值。還可以給值指定易於記憶的名稱。個人理解就是為一組整數值賦予意義。 二:枚舉的優勢 2.1:枚舉可以使代碼更易於維護,有助於確保給變數指定合法的、期望的值。 2.2:枚舉可以使代碼清晰,用描述性的名 ...
  • 一、基本知識1.這三個都是.Net內置的泛型委托,方便我們直接使用,而不需要在使用委托時還要做如下定義 2.Func<T>是有返回值的泛型委托,格式為Func<T1,T2,T..N,TResult>,T1,T2,T..N為多個參數,TResult為返回值 3.Ation<T>是沒有返回值的泛型委托, ...
  • 未能載入文件或程式集“Newtonsoft.Json, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b9a188c8922137c6”或它的某一個依賴項。找到的程式集清單定義與程式集引用不匹配。 (異常來自 HRESULT:0x80131040) ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...