如何安装Grunt

时间:2013-09-22 04:31:55

标签: javascript node.js macos gruntjs npm

我使用Homebrew安装Node.js,然后使用npm install安装Grunt及其依赖项,但在安装完成后,我无法运行Grunt:

zsh: correct 'grunt' to 'grn' ÆnyaeÅ? n
zsh: command not found: grunt

安装Grunt的正确方法是什么,所以我没有收到此错误?

2 个答案:

答案 0 :(得分:21)

要在命令行上使用Grunt,您必须安装命令行界面:

npm install -g grunt-cli

-g标志用于全局安装模块,这也将为Grunt创建一个PATH变量。

答案 1 :(得分:3)

npm install -g grunt-cli   => This will put the grunt command in your system path