|
Be the first user to complete this post
|
Add to List |
Understanding semver versioning for your nodejs packages
When creating a package
PATCH Version Number
MINOR Version Number
MAJOR Version Number
When consuming a package
The diagram below shows the three most important ways in which you consume a package that is versioned using semver.
Also Read:
- Access the request body of a post request in your nodejs - expressjs app.
- What is an npmignore file and what is it used for
- Dynamic module loading with require
- set the default node version using nvm
- Understanding routers in express 4.0 - Visually