'node_modules' 不是内部或外部命令,也不是可运行的程序或批处理文件

'node_modules' is not recognized as an internal or external command, operable program or batch file

我在我的应用程序中使用 gulp。

  1. 已安装gulp
  2. 放置 npm 脚本
  3. 运行 使用“npm start”的脚本

收到错误:- **> 开始

node_modules/.bin/gulp watch 'node_modules' is not recognized as an internal or external command, operable program or batch file.**

在 package.json 中启动脚本:- “脚本”:{ “开始”:“node_modules/.bin/gulp观看” },

请帮我解决这个问题。 谢谢

使用 npm 包时,您不需要在 node_modules 中指定可执行文件的路径。尝试以下设置:

  "scripts": {
    "start": "gulp watch"
  },

确保 gulp 也存在于依赖项中。

  "dependencies": {
    "gulp": "^4.0.2"
  }