代码之家  ›  专栏  ›  技术社区  ›  Marco Lackovic

如何使用最新版本的AngularJS启动新项目?

  •  2
  • Marco Lackovic  · 技术社区  · 6 年前

    使用最新版本的AngularJS(目前为1.7.2)启动新项目的最佳方法是什么?

    这个 official documentation 建议克隆 Seed App project template 但是那用的是旧的 1.5.11 AngularJS上的版本。

    偶数纱线AngularJS启动套件( yarn create angular-app my-app )似乎包含不推荐使用的包,然后在节点sass安装后脚本中失败。

    我知道新项目应该使用 latest version of Angular 但这只是为了教育目的。

    2 回复  |  直到 6 年前
        1
  •  2
  •   Marco Lackovic    6 年前

    Seed App project template

    2)更改中的依赖项 bower.json

    "angular": "1.7.x",
    "angular-route": "1.7.x",
    "angular-loader": "1.7.x",
    "angular-mocks": "1.7.x",
    
        2
  •  2
  •   Marco Lackovic    6 年前

    Yarn

    yarn init
    yarn add angular
    yarn add angular-route
    yarn add gulp --dev
    yarn add gulp-concat --dev
    

    然后你必须创建一个 gulpfile.js

    angularjs-starter-kit .