标签:
npm install ../xxx 就行
如果报错,比如
1`Refusing to install as a dependency of itself
说明你的本地模块没npm init ,也就是没有name/version 之类的
本地包强制重新安装
npm install ../xxx -f (只是单纯安装(install)或更新(update)没用,因为version没变)
标签:
原文地址:http://www.cnblogs.com/so-letitgo/p/5815613.html