我将大部分设置/ dotfiles保存在云端,但我很难在设备之间同步npm CLI(例如gulp
,yo
等)。
是否有推荐的方法在多台机器上管理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