nodejs项目的package-lock.json文件的用途

package-lock.json is automatically generated for any operations where npm modifies either the node_modules tree, or package.json. It describes the exact tree that was generated, such that subsequent installs are able to generate identical trees, regardless of intermediate dependency updates.


当npm命令会修改node_modules树形结构或者package.json时,package-lock.json文件会自动被创建。


作用有三:


(1) Describe a single representation of a dependency tree such that teammates, deployments, and continuous integration are guaranteed to install exactly the same dependencies. 其他部署和CI/CD基于此可以安装完全一致的依赖模块。


(2) Provide a facility for users to “time-travel” to previous states of node_modules without having to commit the directory itself.


作为npm操作的版本记录文件,能回溯之前做过的对node_modules的操作。


(3) To facilitate greater visibility of tree changes through readable source control diffs.


(4) And optimize the installation process by allowing npm to skip repeated metadata resolutions for previously-installed packages. 对于之前通过npm安装过的包,可以跳过元数据的解析,优化安装过程。


package.json 里 && 操作符的用法

使用&&时,会运行第一个命令,如果没有出错,则运行第二个命令。 这就像一个逻辑与。


但是,使用 & 将在后台运行命令。 所以在你的第二个 package.json 中,npm run build 将开始在后台运行,然后 npm run exe 也会运行,不管第一个命令发生了什么。

上一篇:用Package Mapper分析包并制作应答文件


下一篇:设置圆角头像