Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我忘记在我的 package.json 中保存一些包,安装时不使用 --save 有没有办法在 package.json 中找到丢失的包并 --save 它们?
您可以查看内部node_modules目录并将目录与package.json. 然后你可以简单地再次安装它们。例如,如果您在 中看到async目录node_modules而不是在您的package.json中,则可以npm install --save async再次运行。
node_modules
package.json
async
npm install --save async
这样的事情怎么样?
npm install --save $(ls node_modules)