npm 常用命令
如果安装nrm无法访问,需要配置NRM_HOME环境变量
如果vscode访问策略还是无法正常使用nrm,以管理员身份运行cmd,配置输入下面命令
set-ExecutionPolicy RemoteSigned
配置全局缓存文件夹
npm config set prefix "D:\software\nodes\node_global"
npm config set cache "D:\software\nodes\node_cache"
1、安装所以依赖到你的项目
npm install
2、根据包名和指定版本号安装依赖
npm install [email protected]
npm install xxx@latest // 安装包的最新版本
3、根据范围安装
-D 是在开发环境中协助开发需要使用的,-S是生产环境打包时需要的,-g是全局安装依赖,在package.json中 -D在devDependencies对象中,-S在dependencies对象中
npm install [email protected] -D/-S/-g
4、查看npm配置文件内容
npm config list
结果:
5、查看所以npm 详细配置
npm config ls -l
6、查看当前项目依赖
npm ls
7、查看全局npm依赖
npm ls -g
8、npm登录命令
npm login
9、npm 发布包命令
npm publish
nrm常用命令
nrm 常用npm镜像源管理工具,方便本地切换npm的镜像源。
1、npm 安装nrm
npm install -g nrm
2、nrm 查看镜像源
npm ls
3、nrm切换镜像源
nrm use npm
4、获取当前npm 镜像源
npm get registry