npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@hashicorp/js-releases

v1.7.2

Published

Download packages from releases.hashicorp.com

Downloads

3,199

Readme

js-releases

Run tests Publish

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';

// Setting a user agent string is optional but helpful!
const userAgent = `Example-Program/1.0.0 js-releases/dev`;

// Download metadata for a release using a semver range or "latest"
// "latest" is set by default if no range is included
const release = await getRelease("terraform-ls", "latest", userAgent);

// Include pre-releases in the semver range
const preRelease = await getRelease("terraform-ls", "^1.0.pre-0", userAgent, true);

// Select metadata for a build matching a given OS and arch
const build = release.getBuild(os, arch);

// Download the release to an install path
const installPath = "/hc_product/downloads"
await release.download(build.url, installPath, userAgent);

// Verify the release shasum and signature
await release.verify(installPath, build.filename);

// Unpack the release from the install path to a destination
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.