uniapp开发app框架在提升开发效率中的独特优势与应用探索
2528
2022-09-20
windows下快速删除node_modules
windows使用cmd快速删除一个文件夹
在linux下可以使用rm -rf node_modules来快速删除文件夹。
rm -rf node_modules
在windows也有类似命令。
在你的项目目录下打开cmd ,使用rd /s /q node_modules 可以快速删除
rd /s /q node_modules
如果是powershell,使用rd -r node_modules命令
rd -r node_modules
推荐(最方便,删除速度超快)
利用npm:输入 npm install rimraf -g rimraf node_modules
npm install rimraf -g rimraf node_modules
清除npm缓存:
输入: npm cache clean -f
npm cache clean -f
添加cnpm 指令:
输入: npm install -g cnpm --registry=install -g cnpm --registry=config get registry
切换回Npm官方:
输入: npm config set registry config set registry http://registry.npmjs.org
临时使用
//本次从淘宝仓库源- npm --registry=install
修改npm的源
//设置淘宝源
npm config set registry npm install [
2、更新(up, upgrade)
输入:npm update [
3、卸载(remove、rm、r, un、unlink)
输入:npm uninstall [
命令 | node_modules | package.json | npm install | npm install --production |
npm install | 是 | 否 | 否 | 否 |
npm install -g | 否 | 否 | 否 | 否 |
npm install --save | 是 | dependencies | 是 | 是 |
npm install --save-dev | 是 | devDependencies | 是 | 否 |
4、查看Npm版本
输入:npm -v
npm -v
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~