node npm
一、nvm、npm、node介绍
1.区别
nvm:nodejs 的版本管理工具,也就是说:一个 nvm 可以管理很多 node 版本和 npm 版本。
nodejs:在项目开发时的所需要的代码库。
npm:nodejs 包管理工具,在安装的 nodejs 的时候,npm 也会跟着一起安装,它是包管理工具,npm 管理 nodejs 中的第三方插件。
安装的时候通过安装nvm来安装nodejs,不要直接安装nodejs。不然以后nodejs版本不兼容很麻烦。
参考链接
https://blog.csdn.net/kobepaul123/article/details/125360217
===================================npm常用命令===================================
安装依赖
npm install
从淘宝源安装依赖
npm install --registry=https://registry.npm.taobao.org
删除 node_modules 并重新安装
rm -rf node_modules && npm install
npm i 错误code128,链接不到 github 可以尝试这个解决 执行npm install报错无法连接到github.com的问题_grootblockchain的博客-CSDN博客
git config --global url."https://".insteadOf git://
开发模式运行
npm run dev
清空缓存
npm cache clean --force
======================================================================