简体   繁体   English

为什么“npm run watch”在 laravel 中出现错误?

[英]Why 'npm run watch' gives error in laravel?

I am following this tutorial http://w3programmers.com/bangla/build-an-e-commerce-project-with-laravel-in-bangla-part-6/ .我正在关注本教程http://w3programmers.com/bangla/build-an-e-commerce-project-with-laravel-in-bangla-part-6/ In this tutorial when executing 'npm run watch' in command prompt, an app.js file creates in public/backend/js.在本教程中,当在命令提示符下执行“npm run watch”时,会在 public/backend/js 中创建一个 app.js 文件。 But when I execute 'npm run watch' no such file created.但是当我执行“npm run watch”时,没有创建这样的文件。 After executing 'npm run watch' command I found this in command prompt执行“npm run watch”命令后,我在命令提示符中找到了这个

> @ watch E:\Laravel\ecommerce-application
> npm run development -- --watch


> @ development E:\Laravel\ecommerce-application
> node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js "--watch"

internal/modules/cjs/loader.js:960
  throw err;
  ^

Error: Cannot find module 'E:\Laravel\ecommerce-application\node_modules\cross-env\dist\bin\cross-env.js'
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:957:15)
    at Function.Module._load (internal/modules/cjs/loader.js:840:27)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:74:12)
    at internal/main/run_main_module.js:18:47 {
  code: 'MODULE_NOT_FOUND',
  requireStack: []
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ development: `node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js "--watch"`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ development script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\J.U.Jisan\AppData\Roaming\npm-cache\_logs\2020-05-09T18_22_08_016Z-debug.log
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! @ watch: `npm run development -- --watch`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the @ watch script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\J.U.Jisan\AppData\Roaming\npm-cache\_logs\2020-05-09T18_22_08_158Z-debug.log

Run these two lines, they were working for me.运行这两条线,它们为我工作。

   $ npm config rm proxy
   $ npm config rm https-proxy

Then, go for your command.然后, go 为您的命令。

please run: npm install then npm run watch请运行:npm 安装然后 npm 运行手表

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM