nrm icon indicating copy to clipboard operation
nrm copied to clipboard

NPM registry manager, fast switch between different registries: npm, cnpm, nj, taobao

Results 53 nrm issues
Sort by recently updated
recently updated
newest added

![截屏2022-07-27 16 17 36](https://user-images.githubusercontent.com/35100096/181197865-cadfeb61-474f-47ab-a41c-5144adaf8a58.jpg)

the version of 1.2.6 should be published,Some bugs were fixed

cli.js ```function onList () { getCurrentRegistry(function (cur) { var info = ['']; var allRegistries = getAllRegistry(); const keys = Object.keys(allRegistries); const len = Math.max(...keys.map(key => key.length)) + 3; Object.keys(allRegistries).forEach(function (key)...

it seems that `nrm `only change the `npm` registry, so what about `yarn`? run `yarn config list`, and you could see yarn registry config

now `nrm current` failed, it show nothing. and `nrm ls` just show all registries and current registry not show "*" , look up the code, I find when i use...

for example : my registry is `test http://a/` and use `nrm set-hosted-repo test http://a-hosted/` then, i used `nrm publish` the console log is ` current registry is a custom registry,...

在最新版,1.2.5 依然没有解决这个问题?? 从旧版本看 .nrmrc 文件中只会保存一条记录。 在1.2.5 中 cli.js 文件的 211 行, 判断逻辑是有问题的。hasOwnProperty 判断不应从 customRegistries中是否存在用户输入的name变量传递的值。[如:npm、taobao] ,判断应该从所有allRegistries 的集合中判断是否存在输入 use 后面的值。 ` if (hasOwnProperty(allRegistries, name) && (name in registries || customRegistries[name].registry === registry.registry))...

The 1.2.5 version released on NPM is inconsistent with the 1.2.5 version of the Master branch on Github. It is omissions when the 1.2.5 version is released.When using the 1.2.5...