6
In Node.js environment when we fetch modules from NPM suffixes can be used to specify versions.
For example, in the package.json
I often see:
"dependencies": {
"async": "~1.4.2",
"express": "^4.13.3",
What are these suffixes ^
, ~
, and how to use?