美文网首页
npm常用命令

npm常用命令

作者: YoungEvita | 来源:发表于2021-05-25 21:57 被阅读0次

1、创建package.json

npm init

2、查看已安装插件版本

npm list 插件名称

3、清除缓存

npm cache clean -f 

4、快速删除node_modules

npm install rimraf -g 
rimraf node_modules

5、查看node_module 全局 路径

npm root -g

6、链接全局gulp

 npm link gulp

7、配置代理

npm config set proxy="https://username:password@proxy:port"
npm config set https-proxy="http://username:password@proxy:port"

8、查看配置

 npm config list

9、取消代理设置

npm config set proxy null
npm config set https-proxy null

10、升级指定包到指定版本

npm update xxx@version

11、安装指定版本

npm install xxx@version

12、安装到最新版本

npm install xxx@latest

13、查看指定包的历史版本和最新版本信息

npm view xxx versions
npm info xxx

14、查看已安装的指定包

npm list xxx

15、查看镜像源

npm config get registry 

15、设置镜像源

npm config set registry 地址

16、删除设置的镜像源

npm config rm registry 

相关文章

  • npm 常用命令缩写

    npm 常用命令缩写,不断更新 npm i === npm install npm i webpack -D ==...

  • ionic常用命令

    常用命令: npm install -g cnpm --registry=https://registry.npm...

  • [mark] npm 了解一下~

    npm 常用命令及解析

  • npm常用命令

    npm常用命令 npm init 生成package.json文件 npm install 安装package.j...

  • Yarn 常用命令

    Yarn 常用命令 ``` npm install === yarn —— install安装是默认行为 npm ...

  • nodejs npm 常用命令

    国内镜像 设置代理 npm设置列表 npm config 所有的api npm 常用命令npm查看全局安装过的包 ...

  • Angular 学习笔记

    几个常用命令 npm + ng npm i --save 包名:软件依赖 npm i --save-dev 包名...

  • NPM

    npm 常用命令 1.react-native --version ...

  • npm命令

    1.查看npm 版本 2.npm淘宝镜像 3.npm常用命令说明 4.npm卸载 5.npm更新 6.npm清除缓...

  • NPM一些常用命令

    欢迎移步我的博客阅读:《NPM一些常用命令》 关于NPM NPM的全称是Node Package Manager,...

网友评论

      本文标题:npm常用命令

      本文链接:https://www.haomeiwen.com/subject/cethsltx.html