使用最新版本的AngularJS(当前为1.7.2)启动新项目的最佳方法是什么?
official documentation建议克隆Seed App project template,但这使用了AngularJS上的旧1.5.11
版本。
即使是纱线AngularJS入门工具包(yarn create angular-app my-app
)似乎也包含已弃用的软件包,然后在node-sass后安装脚本中失败。
我知道新项目应该使用latest version of Angular,但这只是出于教育目的。
答案 0 :(得分:2)
1)克隆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",
答案 1 :(得分:2)
您可以运行以下命令,以Yarn创建一个简约的AngularJS项目:
yarn init
yarn add angular
yarn add angular-route
yarn add gulp --dev
yarn add gulp-concat --dev
然后必须使用构建任务来创建gulpfile.js
。
或者,您可以从angularjs-starter-kit开始。