详解.Net Core + Angular2 环境搭建_实用技巧

本文介绍了.Net Core + Angular2 环境搭建,具体如下:

环境搭建:

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)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索环境搭建
, .net
, core
angular2
angularjs 指令详解、angularjs搭建web应用、angular2环境搭建、angularjs框架搭建、angularjs q详解,以便于您获取更多的相关知识。

时间: 2024-09-14 10:32:37

详解.Net Core + Angular2 环境搭建_实用技巧的相关文章

详解.net mvc session失效问题_实用技巧

最近在研究有关.net mvc项目中的session失效问题,下面小编把研究过程给大家共享下,大家可以参考下. 最近解决基于.net mvc项目的session失效问题,这个跟大家聊聊. 1.问题分析 .net mvc中,Session失效需要考虑几种情况: •基于权限认证的Action,使用非Ajax请求: •基于权限认证的Action,使用JQueryt Ajax请求: •基于权限认证的Action,使用.net mvc封装的Ajax请求: •无权限认证的Action,使用非Aajx请求:

详解.NET中使用Redis数据库_实用技巧

Redis是一个用的比较广泛的Key/Value的内存数据库,新浪微博.Github.StackOverflow 等大型应用中都用其作为缓存,Redis的官网为http://redis.io/. 最近项目中需要使用Redis,这里简单记录一下Redis的安装,以及如何在.NET中使用Redis. Redis安装与启动 1. 下载Redis Redis本身没有提供Windows版本的,并且在Windows上也不太稳定,一般都将其部署到Linux环境下,Redis可以在其官网上下载, MSOpenT

详解ASP.NET页面生命周期_实用技巧

ASP.NET页面运行时候,页面将经历一个生命周期,在生命周期中将执行一系列的处理步骤.包括初始化.实例化控件.还原和维护状态.运行时间处理程序代码以及进行呈现.熟悉页面生命周期非常重要,这样我们才能在生命周期的合适阶段编写代码.如果我们能在写代码的时候想着我们现在是在做生命周期的哪一步那将是非常好的. 几个代表性的问题 在开始的时候我们先思考几个问题,看看我们在描述完页面生命周期的时候,能不能回答上这几个问题 1.为什么在服务器端能通过this.textbox1.Text获取到用户提交过来的数

asp.net分页控件使用详解【附实例下载】_实用技巧

一.说明 AspNetPager.dll这个分页控件主要用于asp.net webform网站,现将整理代码如下 二.代码 1.首先在测试页面Default.aspx页面添加引用 <%@ Register Assembly="AspNetPager" Namespace="Wuqi.Webdiyer" TagPrefix="webdiyer" %> 2.写一个Repeater列表控件用于显示数据 <asp:Repeater ID

详解路由器和交换机的区别_应用技巧

计算机网络往往由许多种不同类型的网络互连连接而成.如果几个计算机网络只是在物理上连接在一起,它们之间并不能进行通信,那么这种"互连"并没有什么实际意义.因此通常在谈到"互连"时,就已经暗示这些相互连接的计算机是可以进行通信的,也就是说,从功能上和逻辑上看,这些计算机网络已经组成了一个大型的计算机网络,或称为互联网络,也可简称为互联网.互连网.  将网络互相连接起来要使用一些中间设备(或中间系统),ISO的术语称之为中继(relay)系统.根据中继系统所在的层次,可以

惊现瑞星升级原理详解,其实早就有人破解了_应用技巧

中天.比特均通过修改 Hosts 文件实现瑞星升级, 剑盟则是通过设置代理服务器实现. 大概的过程就是让瑞星的智能升级程序连接到非官 方服务器.正如比特网 abcbit 所言:"虽然修改hosts仅仅是一小步,但是幕后的工作确是一大步." 有很多网友问关于瑞星升级的原理, 网上也出现了许多解释, 我写本文的目的只是为了把这个过程说得更具体.仅属个人意见, 供大家参 考, 可能会有些错误. 瑞星智能升级程序 (Smartup.exe) 启动的时候, 首先连接以下地址检测最新版本: htt

ASP.NET MVC5+EF6+EasyUI后台管理系统 微信公众平台开发之资源环境准备_实用技巧

前言: 本次将学习扩展企业微信公众号功能,微信公众号也是企业流量及品牌推广的主要途径,所谓工欲善其事必先利其器,调试微信必须把程序发布外网环境,导致调试速度太慢,太麻烦! 我们需要准备妥当才能进入开发,为后续快速开发作准备 什么是内网穿透? 意在外部网络通过域名可以访问本地IIS站点! 软件环境: Windows10+IIS10 (把本地站点配置到IIS10做为备用,发布站点不作为教程) 知识点:花生壳(主要)ngrok开始: 首先发布站点到IIS,我这里发布站点到本地IIS,并绑定端口为:80

ASP.NET 文件压缩解压类(C#)_实用技巧

本文实例讲述了asp.net C#实现解压缩文件的方法,需要引用一个ICSharpCode.SharpZipLib.dll,供大家参考,具体如下: using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSharpCode.SharpZipLib.Zip; using System.IO; using ICSharpCode.SharpZipLib.Checksum

用.NET 2.0压缩/解压功能处理大型数据_实用技巧

摘要 如果你的应用程序从未使用过压缩,那么你很幸运.而对于另一部分使用压缩的开发人员来说,好消息是,.NET 2.0如今提供了两个类来处理压缩和解压问题.本文正是想讨论何时以及如何使用这些有用的工具. 引言 .NET框架2.0中的一个新名称空间是System.IO.Compression.这个新名称空间提供了两个数据压缩类:DeflateStream和GZipStream.这两个压缩类都支持无损压缩和解压,其设计目的是为了处理流式数据的压缩和解压问题. 压缩是减少数据大小的有效办法.例如,如果你