咕噜服务的问题
Problems with grunt serve
我有项目,但我不能运行他。我使用 WebStorm IDE 并在输入 g运行t serve 后发现下一个错误:
grunt serve
Loading "connect.js" tasks...ERROR
>> SyntaxError: C:\Users\TT\Documents\ES\frontend\node_modules\grunt-contrib-connect\node_modules\connect\node_modules\type-is\node_modules\mime-types\node_modules\mime-db\db.json: Unexpect
ed end of input
Loading "cssmin.js" tasks...ERROR
>> Error: Cannot find module './source-map/source-map-generator'
Loading "jshint.js" tasks...ERROR
>> Error: Cannot find module 'jshint/src/cli'
Loading "uglify.js" tasks...ERROR
>> Error: Cannot find module 'pako/lib/zlib/messages'
Loading "cdnify.js" tasks...ERROR
>> SyntaxError: C:\Users\TT\Documents\ES\frontend\node_modules\grunt-google-cdn\node_modules\google-cdn\node_modules\cdnjs-cdn-data\external\cdnjs.json: Unexpected end of input
Loading "inline_angular_templates.js" tasks...ERROR
>> Error: Cannot find module 'domutils'
Running "serve" task
Warning: Task "connect:livereload" not found. Use --force to continue.
Aborted due to warnings.
Execution Time (2015-05-10 09:03:36 UTC)
loading tasks 18ms █████████████████████████████████████████████████████████████████████████████████████████████████████████ 56%
serve 11ms ████████████████████████████████████████████████████████████████ 34%
Total 32ms
你能帮帮我吗?如何修复它以及需要安装什么才能获得这个项目?
我找到了解决办法。
步骤如下:
- 删除 nodejs 和所有 npm。
- 安装节点
- npm 安装
- npm 安装-g bower
- 凉亭安装
- 发球
成功
嗯... 运行:
$ grunt -v
这会给你丢失的(损坏的)node_modules。有时东西会损坏等等。
我 运行 遇到了与 grunt-google-cdn
相同的问题并重新安装了它。使用 $ npm install grunt-google-cdn --save
之后一切顺利 :)
通常不需要重新安装所有内容。
我有项目,但我不能运行他。我使用 WebStorm IDE 并在输入 g运行t serve 后发现下一个错误:
grunt serve
Loading "connect.js" tasks...ERROR
>> SyntaxError: C:\Users\TT\Documents\ES\frontend\node_modules\grunt-contrib-connect\node_modules\connect\node_modules\type-is\node_modules\mime-types\node_modules\mime-db\db.json: Unexpect
ed end of input
Loading "cssmin.js" tasks...ERROR
>> Error: Cannot find module './source-map/source-map-generator'
Loading "jshint.js" tasks...ERROR
>> Error: Cannot find module 'jshint/src/cli'
Loading "uglify.js" tasks...ERROR
>> Error: Cannot find module 'pako/lib/zlib/messages'
Loading "cdnify.js" tasks...ERROR
>> SyntaxError: C:\Users\TT\Documents\ES\frontend\node_modules\grunt-google-cdn\node_modules\google-cdn\node_modules\cdnjs-cdn-data\external\cdnjs.json: Unexpected end of input
Loading "inline_angular_templates.js" tasks...ERROR
>> Error: Cannot find module 'domutils'
Running "serve" task
Warning: Task "connect:livereload" not found. Use --force to continue.
Aborted due to warnings.
Execution Time (2015-05-10 09:03:36 UTC)
loading tasks 18ms █████████████████████████████████████████████████████████████████████████████████████████████████████████ 56%
serve 11ms ████████████████████████████████████████████████████████████████ 34%
Total 32ms
你能帮帮我吗?如何修复它以及需要安装什么才能获得这个项目?
我找到了解决办法。
步骤如下:
- 删除 nodejs 和所有 npm。
- 安装节点
- npm 安装
- npm 安装-g bower
- 凉亭安装
- 发球
成功
嗯... 运行:
$ grunt -v
这会给你丢失的(损坏的)node_modules。有时东西会损坏等等。
我 运行 遇到了与 grunt-google-cdn
相同的问题并重新安装了它。使用 $ npm install grunt-google-cdn --save
之后一切顺利 :)
通常不需要重新安装所有内容。