【发布时间】:2019-02-05 20:32:46
【问题描述】:
我正在寻找一个种子项目来启动 angular.js 和 node.js 项目。
我遇到了几个样本:
https://github.com/btford/angular-express-seed
https://github.com/pilwon/ultimate-seed
有人对其中一个有经验吗?你有什么推荐的?
【问题讨论】:
我正在寻找一个种子项目来启动 angular.js 和 node.js 项目。
我遇到了几个样本:
https://github.com/btford/angular-express-seed
https://github.com/pilwon/ultimate-seed
有人对其中一个有经验吗?你有什么推荐的?
【问题讨论】:
如果你安装了 node 和 npm,你可以使用 yeoman 搭建一个 Angular Web 应用程序。
mkdir webapp && cd webapp
npm init
npm install yeoman --save-dev
npm install generator-webapp --save-dev
npm install generator-angular --save-dev
yo angular
【讨论】: