我使用以下命令卸载了 grunt。

npm uninstall -g grunt

然后我再次使用以下命令安装了 grunt。

npm install -g grunt-cli

访问以下链接:https://npmjs.org/package/grunt-html

我想使用上面的 grunt 插件

但是当我运行 grunt 命令时,它给出以下错误:

D:\nodeJS\node_modules\grunt-html>grunt
grunt-cli: The grunt command line interface. (v0.1.6)

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:
http://gruntjs.com/getting-started

答案

一切都得到了很好的解释gruntjs.com

请注意,安装 grunt-cli 不会安装 grunt 任务运行程序!

因此,在您的项目文件夹中,您需要安装(最好)latest grunt version:

npm install grunt --save-dev

选项--save-dev将添加grunt作为一个dev-dependency 给你的package.json

来自: stackoverflow.com