What's the difference between tilde(~) and caret(^) in package.json?

后端 未结 19 2071
温柔的废话
温柔的废话 2020-11-22 00:31

After I upgraded to latest stable node and npm, I tried npm install moment --save. It saves the entry in the package.json

19条回答
  •  野的像风
    2020-11-22 00:50

    ~ specfices to minor version releases ^ specifies to major version releases

    For example if package version is 4.5.2 ,on Update ~4.5.2 will install latest 4.5.x version (MINOR VERSION) ^4.5.2 will install latest 4.x.x version (MAJOR VERSION)

提交回复
热议问题