grunt init:节点不工作

时间:2013-12-13 08:07:03

标签: node.js windows-7 gruntjs

我正在尝试做一个介绍咕噜教程。我已经在全局安装了git,node.js和grunt(或者至少我认为我使用过:npm install -g grunt(安装)。然后我创建了一个快速目录并输入它(mkdir demo,cd demo),但是当我输入时:

> grunt init:node

在提示符下我得到以下内容:

grunt-cli: The grunt command line interface (v0.1.11)
Fatal error: unable to find local grunt
If you're seeing this message, either a Gruntfile wasn't found or hasn't been installed locally to your project.  For more information about installing and configuring grunt, please see the Getting Started guide:

http://gruntjs.com/getting-started

我看过它并说它做我正在做的事情以及教程提到的内容???我做错了什么想法? Node.js和Git一直运行正常,所以我只能假设它是grunt或安装失败。

由于

1 个答案:

答案 0 :(得分:3)

有了咕噜声,你需要两个元素。使用npm install -g grunt-cli安装的全局grunt-cli以及grunt本身的本地(项目)副本。所以在项目的文件夹中用npm install grunt --saveDev安装它,这将安装一个本地grunt,并将它添加到package.json文件中的devDependencies。您还需要项目文件夹中的Gruntfile.js。这是一篇很好的文章http://www.integralist.co.uk/Grunt-Boilerplate.html