在多个设备上管理全局安装的npm CLI工具

时间:2016-12-08 15:29:17

标签: node.js npm npm-install

我将大部分设置/ dotfiles保存在云端,但我很难在设备之间同步npm CLI(例如gulpyo等)。

是否有推荐的方法在多台机器上管理npm CLI工具? 是否可以为此用例创建package.json?

作为临时且非常手动的解决方案,我只能提出转储CLI列表 这不太理想,因为这种方法无法卸载现有的包。

# Save the list of globally installed npm packages
ls `npm root -g` > list_of_npm_tools

# On other machine, install by checking up the list
for i in `cat list_of_npm_tools`; do npm install -g $i; done

0 个答案:

没有答案