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.
我已经使用 npm init 创建了 package.json。在某个阶段之后,我根据需要安装了更多模块。而不是手动更新 package.json 依赖项,有没有办法自动更新它?
如果我理解您的要求正确,您想使用 npm 安装依赖项并将该依赖项自动添加到您的package.json?
package.json
如果是这样,--save请在包名之后使用:
--save
npm install [package name] --save
要下载在 中配置的所有包package.json,请使用:
npm update --save
文档:https ://docs.npmjs.com/cli/update