@sussex-occ/sid-install-tool
v1.0.0
Published
Command line tool to install SID software
Readme
SID Install Tools
Utility package to allow private npm packages to be installed and updated without the need to publish them on the public npm server at npmjs.com. Presently, all packages are assume to be tools, so will be installed globally.
Install
npm install sid-install-tool -gConfigure
Once installed you must configure the tool to tell it about your download service as follows:
sid-install-tool init https://myservice.com/packagesUse
Before actually using the tool to install a package (you will need this if you haven't been told the names of available packages) you can use the following command to discover packages available for download:
sid-install-tool list
sid-install-tool versions <package_name>Then you can use the install command to install the latest version of a package:
sid-install-tools install @myorg/my-packageor, if you want, a specific version of a package:
sid-install-tools install @myorg/my-package 1.0.21Finally, you can update a package at any time with the command:
sid-install-tools update @myorg/my-package