npm install时候,忘记–save了,怎么才能再次保存依赖记录到package.json里面 重装除外
什么意思啊,是需要获取已经安装的依赖的版本,然后写入到package.json 吗? npm有个命令npm version到对应的模块目录输入这个命令可以得到当前模块的版本。然后手动写入到package.json去吧。
npm version
@pockry 得到的模块的检索条件是什么 我发现好像不是全部的node_modules下的模块
当然要重装啦。
执行 $ npm ls | grep '^.─' 看看你已经装了什么,然后把没在 package.json 的 --save 进去
$ npm ls | grep '^.─'
[[@dulante](/user/dulante)](/user/dulante) 它只能得到当前模块的版本信息,得不得全部的。要全部依赖的可以用npm ls -depth 0.
npm ls -depth 0
自己编辑package.json 吗…这么懒…