设置npm镜像:
npm config set registry https://registry.npm.taobao.org
我遇到的报错情况:
Error: Cannot find module ‘chalk‘
Error: Cannot find module ‘semver‘
Error: Cannot find module ‘shelljs‘
Error: Cannot find module ‘child_process‘
不同的项目依赖于不同的模块,这些模块都需要自己安装。
运行npm run dev 错误:
报模块不存在错误,这个需要自己安装。
npm安装模块语法:
npm install {module} --save
时间: 2024-10-31 13:36:26