一尘不染

如何为Angular 2.0设置环境?

node.js

开始迈向Angular 2.0的第一步。

首先是为开发建立正确的环境。

我的index.html

<!DOCTYPE HTML>
<html>

<head>
  <title>Welcome to Angular 2.0</title>
  <!--css-->
  <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
 </head>

 <body>
 <div class="container">
    <h1> Hello Angular 2 </h1>
      <my-app> Loading app component....<my-app>
</div>
<!--js-->
<!-- Polyfills for older browsers -->
<script src="https://unpkg.com/core-js/client/shim.min.js"></script>

<script src="https://unpkg.com/zone.js@0.7.4?main=browser"></script>
<script src="https://unpkg.com/reflect-metadata@0.1.8"></script>
<script src="https://unpkg.com/systemjs@0.19.39/dist/system.src.js">   </script>

<script> window.autoBootstrap = true; </script>

<script src="https://cdn.rawgit.com/angular/angular.io/b3c65a9/public/docs/_examples/_boilerplate/systemjs.config.web.js"></script>
<script>
    System.import('app').catch(function (e) { console.log(e); });
  </script>
  <!--js-->
 </body>

 </html>

我已经从https://angular.io/docs/ts/latest/guide/setup.html复制了以下文件的内容:

  • app.component.ts
  • app.module.ts
  • 主要

NPM已安装并正在运行。

节点JS

但是为了获得node_modules具有所需依赖关系的文件夹,应用程序才能运行。我需要运行什么命令。

设置Angular 2环境需要运行哪些命令?

请注意,我是NPM的新手。谢谢。


阅读 183

收藏
2020-07-07

共1个答案

一尘不染

npm install在根项目中(它将node_modulespackage.json文件中提到的依赖项中创建您的依赖项,应该以这些文件作为开始)

2020-07-07