npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! my-project@1.0.0 dev: `node build/dev-server.js wx`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the my-project@1.0.0 dev 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?
错误原因在于由于文件 node_modules 太大,在项目上传时有些人会删掉
导致我们下载的项目中缺少这个文件
在尝试把自己项目的 node_modules文件夹直接复制过去之后发现问题还没有得到解决
解决方法:在命令行中先进入文件所在路径
然后输入命令
npm i
然后发现项目中多出了 文件node_modules
然后输入
npm run dev
发现项目运行成功