node.js - grunt服务器没有启动

时间:2014-09-10 10:00:14

标签: javascript node.js gruntjs grunt-contrib-connect

我正在使用自耕农,咕噜咕噜&第一次将所有人聚集在一起。

tutorial之后,我陷入困境,服务器无法启动,并且给我一个错误

WANRNING: ENOENT, no such file or directory 'c:\wamp\www\yo\app\bower.json'

我在here找到了该错误的解决方案,现在我没有收到错误。


但在修复该错误后,我运行了grunt serve命令。并开始收到此错误(更少或更少)

Running "concurrent:server" (concurrent) task
     Warning: Use --force to continue.

     Aborted due to warnings.

或此错误(最常发生的错误)

Warning: grunt-cli: The grunt command line interface. (v0.1.13) Use --force to continue.

    Aborted due to warnings.

如果我运行grunt serve --force,当然它正在以黄色文本

运行
Warning:   Used --force, continuing.

有人帮我解决了这个问题。

提前致谢。

1 个答案:

答案 0 :(得分:3)

找到解决方案here

问题是未正确安装依赖项。

通过运行

  1. npm install
  2. bower install
  3. 我能够毫无错误地运行grunt服务。