对于初学者,我的问题与Install npm module from gitlab private repository
不同我们维护自己的npm模块,每个模块都在自己的子文件夹中,然后组成一个repo,比如my_node_modules.git,所以可以从中安装一个npm模块,即是否有一个命令/工具我可以用来
npm i -S git + ssh://git@mydomain/path/my_node_modules.git/ A_module /
npm i -S git + ssh://git@mydomain/path/my_node_modules.git/ B_module /
如果没有其他解决方案,我必须安装该个人私人模块?
----更新----
经过一些研究后,我发现我并不孤单
所以npm反对它,https://github.com/npm/npm/issues/2974
纱线正在考虑它,https://github.com/yarnpkg/yarn/issues/4725
我真的不喜欢这里的想法npm install package from github repo subfolder,postinstall sript
我正在考虑使用git子树。我在这里留下我的问题,看看是否有人可以提出一些想法。