Answers for "npm version notation"

2

npm version notation

1.2.3 => 1.2.3 (Matching exactly same version)
~1.2.3 => >=1.2.3 && < 1.3.0 (Matching minor version)
^1.2.3 => >=1.2.3 && < 2.0.0 (Matching major version)
Posted by: Guest on June-19-2020

Browse Popular Code Answers by Language