如何使用最新版本AngularJS开始一个新项目?

How to start a new project with the latest version of AngularJS?

使用最新版本 AngularJS(当前为 1.7.2)开始新项目的最佳方式是什么?

official documentation suggests to clone the Seed App project template,但在 AngularJS 上使用旧的 1.5.11 版本。

甚至 yarn AngularJS 初学者工具包 (yarn create angular-app my-app) 似乎包含已弃用的包,然后在节点-sass 安装后脚本中失败。

我知道新项目应该使用 latest version of Angular,但这仅用于教育目的。

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",

您可以通过 运行 使用 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 开始。