Dan*_*ary 16 asp.net node.js angular
我想使用Angular 2作为现有ASP.NET 4应用程序的前端,即不是MVC 6/ASP.NET CORE,我宁愿不使用node,因为我们已经使用nuget作为我们的包管理器.有没有人知道会引导我完成这些的任何资源?
Dan*_*ary 19
为了回答我原来的问题,这就是我们如何设法使用.net 4.5.1运行Angular 2(我们最终必须使用npm).
在_Layout.cshtml的标题中,从cdn导入了Angular 2文件并配置了SystemJs.
<!-- 1. Load libraries -->
<!-- IE required polyfills, in this exact order -->
<script src="../../node_modules/es6-shim/es6-shim.min.js"></script>
<script src="../../node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="../../node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
<script src="../../node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="../../node_modules/systemjs/dist/system.src.js"></script>
<script src="../../node_modules/rxjs/bundles/Rx.js"></script>
<script src="../../node_modules/angular2/bundles/angular2.dev.js"></script>
<!-- 2. Configure SystemJS -->
<script>
System.config({
packages: {
'my-app': {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('my-app/main')
.then(null, console.error.bind(console));
</script>
Run Code Online (Sandbox Code Playgroud)
将package.json和tsconfig.json添加到项目的路由中
packages.json:
{
"name": "angular2-quickstart",
"version": "1.0.0",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "typings",
"postinstall": "typings install"
},
"license": "ISC",
"dependencies": {
"angular2": "2.0.0-beta.9",
"systemjs": "0.19.24",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.2",
"zone.js": "0.5.15"
},
"devDependencies": {
"typescript": "^1.8.7",
"typings": "^0.7.5"
}
}
Run Code Online (Sandbox Code Playgroud)
tsconfig.json:
{
"compileOnSave": true,
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
]
}
Run Code Online (Sandbox Code Playgroud)
如果您的计算机上安装了node和npm,它应该自动下载您需要的npm模块,并将它们保存在node_modules文件夹中.您现在应该已准备好设置Angular 2应用程序,我们使用它来开始.
| 归档时间: |
|
| 查看次数: |
20246 次 |
| 最近记录: |