当我创建一个AngularJS项目时
原文链接:https://www.f2er.com/angularjs/140656.htmlyo angular
它创建一个node_modules /目录,但将该目录放在.gitignore中.当我将项目克隆到其他地方并运行时
grunt server
我得到
Fatal error: Unable to find local grunt.
If you’re seeing this message,either a Gruntfile wasn’t found or
grunt hasn’t been installed locally to your project. For more
information about installing and configuring grunt,please see the
Getting Started guide:
入门指南并没有说明如何处理丢失的node_modules /目录.
node_modules /目录被故意地丢失,因为你们把它放在.gitignore中.
在这种情况下,使用Yeoman和Grunt的正确方法是什么?
Yeoman和Grunt有没有更好的文档?
谢谢.