美文网首页
工具 - nrm ls 不带星(*)并且 nrm current

工具 - nrm ls 不带星(*)并且 nrm current

作者: CatchZeng | 来源:发表于2022-02-15 13:41 被阅读0次

原文:https://makeoptim.com/tool/nrm-ls-no-star

问题现象

执行以下命令,安装最新版 nrm

$ npm i -g nrm

执行以下命令

$ nrm ls

  npm ---------- 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/

没有看到星(*)标注当前的 registry

执行以下命令

$ nrm current

没有任何输出

解决方法

执行以下命令,通过源码安装 nrm

$ npm install Pana/nrm -g

验证

$ nrm ls
* npm ---------- 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/

$ nrm current
You are using npm registry.

参考链接

相关文章

  • 工具 - nrm ls 不带星(*)并且 nrm current

    原文:https://makeoptim.com/tool/nrm-ls-no-star[https://make...

  • nrm-管理npm源

    nrm是管理npm源的工具,可以使用npm进行安装 npm install nrm -g 执行nrm ls可以查看...

  • webpack

    nrm 安装 npm i nrm -g 不行就 sudo npm i nrm -g 安装 nrm ls nrm ...

  • npm 使用

    nrm切换各种源 npm install -g nrm nrm ls 查看当前使用的源nrm use taoba...

  • nrm切换npm源

    老是记不住,还是写下来好了 安装nrm npm install -g nrm nrm --help nrm ls...

  • vue/cli

    安装 node npm install nrm -g nrm ls nrm use taobao 卸载旧版 npm...

  • (一)nodejs安装nrm源管理器

    install nrm 安装nrm nrm ls 查看现有可以用的源 选择源

  • 如何安装webpack及运行webpack

    1、安装nrm: npm install -g nrm 查看镜像 nrm ls 查看的结果:npm -------...

  • webpack

    全局安装 nrm: npm install nrm -g查看镜像源 nrm ls切换淘宝镜像源 nrm use t...

  • mac下安装nrm vue-cli

    安装nrm sudonpm install -g nrm查看所有的可用的源nrm ls添加源nrm add源的名称...

网友评论

      本文标题:工具 - nrm ls 不带星(*)并且 nrm current

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