nrm之npm镜像源管理工具(NPMRegistryManager)

2024-03-04 21:20

本文主要是介绍nrm之npm镜像源管理工具(NPMRegistryManager),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

nrm之npm镜像源管理工具(NPMRegistryManager)

文章目录

  • nrm之npm镜像源管理工具(NPMRegistryManager)
  • 1. Whats is nrm?
    • 1. 官网地址
    • 2. 关于nrm
    • How to configure yarn to use private registry ?
    • 如何配置yarn使用私有注册表?
  • 2. 安装
  • 2. 用法
    • 1. 查看
    • 2. 切换
    • 3. 新增
    • 4. 删除

1. Whats is nrm?

1. 官网地址

https://github.com/Pana/nrm

https://www.npmjs.com/package/nrm

2. 关于nrm

nrm can help you easy and fast switch between different npm registries, now include: npm, cnpm, taobao, nj(nodejitsu).

nrm可以帮助您在不同的 npm 注册表之间轻松快速地切换,现在包括:npm, cnpm, taobao, nj(nodejitsu).

nrm(NPM registry manager) 是npm的镜像源管理工具,有时候国外资源太慢,使用这个就可以快速地在 npm 源间切换

How to configure yarn to use private registry ?

just add .yarnrc in your project’s directory and write there: registry “http://your.registry”

Or you can configure it in your HOME directory’s .yarnrc

如何配置yarn使用私有注册表?

只需在项目目录中添加 .yarnrc 并在其中写入: registry “http://your.registry”

或者您可以在 HOME 目录的 .yarnrc 中配置它

2. 安装

 npm install -g nrm

2. 用法

F:\yuanWebStormProjects\yuan-vue>nrm -help
Usage: cli [options] [command]Options:-V, --version                           output the version number-h, --help                              output usage informationCommands:ls                                      List all the registriescurrent [options]                       Show current registry name or URLuse <registry>                          Change registry to registryadd <registry> <url> [home]             Add one custom registrylogin [options] <registryName> [value]  Set authorize information for a custom registry with a base64 encoded string or username and paswordset-hosted-repo <registry> <value>      Set hosted npm repository for a custom registry to publish packagesset-scope <scopeName> <value>           Associating a scope with a registrydel-scope <scopeName>                   Remove a scopeset [options] <registryName>            Set custom registry attributerename <registryName> <newName>         Set custom registry namedel <registry>                          Delete one custom registryhome <registry> [browser]               Open the homepage of registry with optional browserpublish [options] [<tarball>|<folder>]  Publish package to current registry if current registry is a custom registry.if you're not using custom registry, this command will run npm publish directlytest [registry]                         Show response time for specific or all registrieshelp                                    Print this helpif you want to clear the NRM configuration when uninstall you can execute "npm uninstall nrm -g -C or npm uninstall nrm -g --clean"

1. 查看

F:\yuanWebStormProjects\yuan-vue>nrm lsnpm ---------- https://registry.npmjs.org/yarn --------- https://registry.yarnpkg.com/tencent ------ https://mirrors.cloud.tencent.com/npm/cnpm --------- https://r.cnpmjs.org/taobao ------- https://registry.npmmirror.com/npmMirror ---- https://skimdb.npmjs.com/registry/

2. 切换

F:\yuanWebStormProjects\yuan-vue>nrm use taobaoRegistry has been set to: https://registry.npmmirror.com/

3. 新增

add <registry> <url> [home]  
F:\yuanWebStormProjects\yuan-vue>nrm add yuan http://192.168.31.25:8081/repository/yuannode/add registry yuan success

4. 删除

F:\yuanWebStormProjects\yuan-vue>nrm del yuandelete registry yuan success

这篇关于nrm之npm镜像源管理工具(NPMRegistryManager)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/774481

相关文章

idea npm install很慢问题及解决(nodejs)

《ideanpminstall很慢问题及解决(nodejs)》npm安装速度慢可通过配置国内镜像源(如淘宝)、清理缓存及切换工具解决,建议设置全局镜像(npmconfigsetregistryht... 目录idea npm install很慢(nodejs)配置国内镜像源清理缓存总结idea npm in

docker 重命名镜像的实现方法

《docker重命名镜像的实现方法》在Docker中无法直接重命名镜像,但可通过添加新标签、删除旧镜像后重新拉取/构建,或在DockerCompose中修改配置文件实现名称变更,感兴趣的可以了解一下... 目录使用标签(Tagging)删除旧的php镜像并重新拉取或构建使用docker Compose在Do

python依赖管理工具UV的安装和使用教程

《python依赖管理工具UV的安装和使用教程》UV是一个用Rust编写的Python包安装和依赖管理工具,比传统工具(如pip)有着更快、更高效的体验,:本文主要介绍python依赖管理工具UV... 目录前言一、命令安装uv二、手动编译安装2.1在archlinux安装uv的依赖工具2.2从github

linux配置podman阿里云容器镜像加速器详解

《linux配置podman阿里云容器镜像加速器详解》本文指导如何配置Podman使用阿里云容器镜像加速器:登录阿里云获取专属加速地址,修改Podman配置文件并移除https://前缀,最后拉取镜像... 目录1.下载podman2.获取阿里云个人容器镜像加速器地址3.更改podman配置文件4.使用po

Docker多阶段镜像构建与缓存利用性能优化实践指南

《Docker多阶段镜像构建与缓存利用性能优化实践指南》这篇文章将从原理层面深入解析Docker多阶段构建与缓存机制,结合实际项目示例,说明如何有效利用构建缓存,组织镜像层次,最大化提升构建速度并减少... 目录一、技术背景与应用场景二、核心原理深入分析三、关键 dockerfile 解读3.1 Docke

Python一次性将指定版本所有包上传PyPI镜像解决方案

《Python一次性将指定版本所有包上传PyPI镜像解决方案》本文主要介绍了一个安全、完整、可离线部署的解决方案,用于一次性准备指定Python版本的所有包,然后导出到内网环境,感兴趣的小伙伴可以跟随... 目录为什么需要这个方案完整解决方案1. 项目目录结构2. 创建智能下载脚本3. 创建包清单生成脚本4

Conda国内镜像源及配置过程

《Conda国内镜像源及配置过程》文章介绍Conda镜像源使用方法,涵盖临时指定单个/多个源、永久配置及恢复默认设置,同时说明main(官方稳定)、free(逐渐弃用)、conda-forge(社区更... 目录一、Conda国内镜像源二、Conda临时使用镜像源指定单个源临时指定多个源创建环境时临时指定源

Python包管理工具pip的升级指南

《Python包管理工具pip的升级指南》本文全面探讨Python包管理工具pip的升级策略,从基础升级方法到高级技巧,涵盖不同操作系统环境下的最佳实践,我们将深入分析pip的工作原理,介绍多种升级方... 目录1. 背景介绍1.1 目的和范围1.2 预期读者1.3 文档结构概述1.4 术语表1.4.1 核

java实现docker镜像上传到harbor仓库的方式

《java实现docker镜像上传到harbor仓库的方式》:本文主要介绍java实现docker镜像上传到harbor仓库的方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录1. 前 言2. 编写工具类2.1 引入依赖包2.2 使用当前服务器的docker环境推送镜像2.2

springboot项目打jar制作成镜像并指定配置文件位置方式

《springboot项目打jar制作成镜像并指定配置文件位置方式》:本文主要介绍springboot项目打jar制作成镜像并指定配置文件位置方式,具有很好的参考价值,希望对大家有所帮助,如有错误... 目录一、上传jar到服务器二、编写dockerfile三、新建对应配置文件所存放的数据卷目录四、将配置文