js-releases
Download packages from releases.hashicorp.com
js-releases
is a handy tool for downloading and verifying packages from releases.hashicorp.com.
You can:
- fetch metadata for a given release (or latest)
- download the package
- verify the SHASUM and signature
- unpack to a specified directory
Environment variables
The downloader can be configured with environment variables.
Currently available variables:
Environment variable | Description | Default |
---|
HTTP_PROXY | http_proxy | If configured will set the HTTP proxy to fetch/download with. | - |
HTTPS_PROXY | https_proxy | If configured will set the HTTPS proxy to fetch/download with. | - |
Usage
import { Release, getRelease } from '@hashicorp/js-releases';
const userAgent = `Example-Program/1.0.0 js-releases/dev`;
const release = await getRelease("terraform-ls", "latest", userAgent);
const preRelease = await getRelease("terraform-ls", "^1.0.pre-0", userAgent, true);
const build = release.getBuild(os, arch);
const installPath = "/hc_product/downloads"
await release.download(build.url, installPath, userAgent);
await release.verify(installPath, build.filename);
const destination = "/usr/local/bin"
return release.unpack(installPath, destination)
Validating releases
Packages are verified using HashiCorp's public GPG key 72D7468F
. The previous key was rotated and revoked per HCSEC-2021-12 on 2021-04-22. As a result, earlier versions of js-releases
will no longer be able to verify packages.
License
Mozilla Public License v2.0
Code of Conduct
Code of Conduct
Experimental Status
By using the software in this repository (the "Software"), you acknowledge that: (1) the Software is still in development, may change, and has not been released as a commercial product by HashiCorp and is not currently supported in any way by HashiCorp; (2) the Software is provided on an "as-is" basis, and may include bugs, errors, or other issues; (3) the Software is NOT INTENDED FOR PRODUCTION USE, use of the Software may result in unexpected results, loss of data, or other unexpected results, and HashiCorp disclaims any and all liability resulting from use of the Software; and (4) HashiCorp reserves all rights to make all decisions about the features, functionality and commercial release (or non-release) of the Software, at any time and without any obligation or liability whatsoever.