I am deploying a private npm module for internal use at our company. Since the module is handled internally, we can trust version bumps etc.
How can I install the module
Use "*" as your version in your package.json file. For example:
"dependencies": { "my-awesome-repo": "*" }
Upon npm install this will automatically install the latest version for "my-awesome-repo" that is availabile on npm.
npm install