#nodejs #download #async-http #http #async #installer

node-js-release-info

Asynchronously retrieve Node.js release info by version and platform from the downloads server

5 releases (3 stable)

1.1.1 Oct 25, 2023
1.1.0 Oct 22, 2023
1.0.0 Oct 19, 2023
0.1.1 Oct 16, 2023
0.1.0 Sep 29, 2023

#206 in HTTP client

Download history 58/week @ 2024-02-12 6/week @ 2024-02-26 7/week @ 2024-03-11 80/week @ 2024-04-01

87 downloads per month

MIT/Apache

60KB
1.5K SLoC

node-js-release-info

Latest Version Documentation CI Status

Asynchronously retrieve Node.js release info by version and platform from the downloads server

Installation

cargo add node-js-release-info

Examples

This example uses Tokio, be sure to install it with:

cargo add tokio --features full
use node_js_release_info::{NodeJSRelInfo, NodeJSRelInfoError};

#[tokio::main]
async fn main() -> Result<(), NodeJSRelInfoError> {
  // get a specific configuration
  let info = NodeJSRelInfo::new("20.6.1").macos().arm64().fetch().await?;
  assert_eq!(info.version, "20.6.1");
  assert_eq!(info.filename, "node-v20.6.1-darwin-arm64.tar.gz");
  assert_eq!(info.sha256, "d8ba8018d45b294429b1a7646ccbeaeb2af3cdf45b5c91dabbd93e2a2035cb46");
  assert_eq!(info.url, "https://nodejs.org/download/release/v20.6.1/node-v20.6.1-darwin-arm64.tar.gz");

  // get all supported configurations
  let all = info.fetch_all().await?;
  assert_eq!(all.len(), 24);
  assert_eq!(all[2], info);
  println!("{:?}", all);
  Ok(())
}

Features

Full json serialization + deserialization is avaialable via the json feature.

cargo add node-js-release-info --features json
use node_js_release_info::{NodeJSRelInfo, NodeJSRelInfoError};

#[tokio::main]
async fn main() {
  let info = NodeJSRelInfo::new("20.6.1").macos().arm64().to_owned();
  let json = serde_json::to_string(&info).unwrap();
  let info_deserialized = serde_json::from_str(&json).unwrap();
  assert_eq!(info, info_deserialized);
}

Dependencies

~6–20MB
~285K SLoC