首页 > 代码库 > NodeJS:Error: Cannot find module 'jshint/src/cli'

NodeJS:Error: Cannot find module 'jshint/src/cli'

以前命令:npm install gulp-jshint --save-dev

实质上是安装jshint失败,缺少该模块。

更换命令 :npm install --save-dev jshint gulp-jshint

参考:http://stackoverflow.com/questions/33984558/gulp-error-cannot-find-module-jshint-src-cli

NodeJS:Error: Cannot find module 'jshint/src/cli'