Home NPM命令
Post
Cancel

NPM命令

NPM是随同NodeJS一起安装的包管理工具,能解决NodeJS代码部署上的很多问题,常用的命令有:

  • 清除缓存
    1
    
    npm cache clean --force
    
  • 显示配置列表
    1
    
    npm config list
    
  • 淘宝镜像的安装
    1
    2
    
    npm config set registry https://registry.npm.taobao.org --global 
    npm config set disturl https://npm.taobao.org/dist --global 
    
  • 淘宝镜像的卸载
    1
    
    npm config set disturl https://npm.taobao.org/dist
    
This post is licensed under CC BY 4.0 by the author.