I have started working on a new project in node js and I have generated the project using yeoman's angular fullstack generator. And now I would like to add a new bower dependency and a new node dependency. What is the best way to do this? Should I simply add the dependency in bower.json and package.json or should I run a specific command?
问问题
1123 次
2 回答
5
您不需要 yeoman 为您安装这些依赖项。相反,yeoman 为您提供了一个环境,所有内容都设置为使用 bower、npm、grunt 等。您可以像通常使用 npm 或 bower 一样添加其他依赖项。
对于凉亭(http://bower.io/) -
bower install -S <name-of-your-dependancy>
该命令会为您下载代码,并且还会在您的 bower.json 中添加对它的引用
节点类似(https://www.npmjs.com/) -
npm install -S <name-of-your-dependancy>
于 2015-03-16T14:45:08.510 回答
0
使用 npm 数据包管理器来安装组件,例如,如果要安装 cordova,请使用:
npm install -g 科尔多瓦
要安装 AngularJs,请遵循官方网站指南: https ://docs.angularjs.org/misc/started
于 2015-03-16T14:45:53.257 回答