如何快速完全删除node_modules
1.安装npm包–rimraf
npm install rimraf -g
2.在cmd指令下,进入所需删除的node_modules文件夹的位置,再输入指令
rimraf node_modules
安装淘宝镜像
npm install -g cnpm --registry=http://registry.npm.taobao.org
有的时候报错request to http://registry.npm.taobao.org/element-ui failed, reason: connect EACCES 125.76.247.238:80
清下缓存试下
npm cache clean --force
git将本地分支提交到远程分支并在远程新建分支
第一步:在本地新建newbranch分支
git branch newbranch
第二步:把本地newbranch分支push到远程
git push origin newbranch
第三步:切换到该newbranch分支
git push origin newbranch
第四步:查看本地修改
git status
第五步:添加本地修改
git add .
第六步:commit修改
git commit -m 'XXXX'
第七步:push代码
git push
全局安装 serve:
npm i -g serve
serve .
项目的目录结构在浏览器可视化了。就可以清晰的看到项目结构了:
image.png
网友评论