Delivery to Registries
We can deliver new releases of the software to registries.
Registry - is a software package hosting service, that allows you to host your packages and code in one place.
Registry types:
- public
- private
Example public package registries
Examples of installing packages from a registry for using them in a project:
For NodeJS
npm install <PACKAGE_NAME>
For Java
mvn install <PACKAGE_NAME>
For Python
pip install <PACKAGE_NAME>
pip3 install <PACKAGE_NAME>