Skip to content

Instantly share code, notes, and snippets.

@garrytrinder
Last active March 12, 2022 16:56
Show Gist options
  • Save garrytrinder/9cad7af24bfd5caa21f80a003e09092c to your computer and use it in GitHub Desktop.
Save garrytrinder/9cad7af24bfd5caa21f80a003e09092c to your computer and use it in GitHub Desktop.
Scrapes the npm versions page for CLI Microsoft 365 and returns betas for a specific version
var betas = []; document.querySelectorAll("a.code").forEach((version)=>{ version.innerText.includes("5.0.0-beta") ? betas.push(version.innerText); betas;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment