一、node的安装(可以去文末直接安装nvm管理器,就不用配置了)
1 下载 | Node.js,也可以下载以往版本,window是以msi结尾的文件
2 安装,直接一直安装就行,如果有之前安装的版本,先进行卸载,然后再进行安装
3 安装完成后查看版本号
- node -v
-
- npm -v
4 配置全局包的安装位置
5 在cmd控制台运行下面两条命令, 双引号内的地址改成刚才那两个文件夹内的地址
- npm config set prefix "D:Program Files nodejs node_global"
- npm config set cache "D:Program Files nodejs node_cache"
6 然后配置环境变量 “我的电脑”-右键-“属性”-“高级系统设置”-“高级”-“环境变量”
7 在"系统变量"下新建**“NODE_PATH”**,
输入"D:Program Files odejs ode_global" ,就是刚才新建文件夹的地址
7 然后将"用户变量"下的**“Path"修改为"D:Program Files odejs ode_global”**,也是那个文件夹地址
二、前端node常用包安装、常用命令
查看npm镜像源
- npm get registry
-
- #配置npm淘宝镜像源
- npm config set registry https://registry.npm.taobao.org
-
- #恢复npm默认镜像源
- npm config set registry https://registry.npmjs.org
-
- #安装cnpm
- npm install cnpm --registry=https://registry.npm.taobao.org -g
-
- #安装yarn
- npm install yarn -g
-
- #查看yarn镜像源
- yarn config get registry
-
- #配置yarn淘宝镜像源
- yarn config set registry https://registry.npm.taobao.org
-
- #恢复yarn默认镜像源
- yarn config set registry https://registry.yarnpkg.com
-
- #安装webpack
- npm install webpack webpack-cli -g
-
- #安装vue脚手架
- npm install @vue/cli -g
-
- #安装vite(Vite 需要Node.js版本 >= 12.0.0。)
- npm install create-vite-app -g
-
- #安装react
- npm install create-react-app -g
-
- #安装全局nodemon
- npm install nodemon -g
-
- #安装全局express
- npm install express-generator -g
-
- #安装koa
- npm install koa-generator -g
-
- #安装eggJS
- npm install egg-init -g
-
- #安装nestJS
- npm install @nestjs/cli -g
-
- #安装TypeScript
- npm install typescript -g
-
- #安装Electron
- npm install electron -g
-
- #安装TypeORM
- npm install typeorm -g
-
- #npm清理缓存
- npm cache clean -f
-
- #node查看npm包的位置
- npm config get prefix