How to install and save exact npm package in Nodejs application
February 28, 2022 · 2 min read
NodeJS has a dependency management using package.json and npm command with the npm install command, It installs and adds a version as in the dependencies section { "package": "version" } The version contains a tild, carat symbols, or exact version. During the npm install, if you don’t specify the version, if package.json contains 9.0.0 if the below is added to the version, It takes available latest version from the npm remote repository....