Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save karol-pawlowski/62b907603810351dee9cc495cc8a9b92 to your computer and use it in GitHub Desktop.
Save karol-pawlowski/62b907603810351dee9cc495cc8a9b92 to your computer and use it in GitHub Desktop.
Installing latest Yarn with PowerShell
Write-Host "Installing Yarn..." -ForegroundColor Cyan
Write-Host "Downloading..."
$msiPath = "$env:TEMP\yarn.msi"
(New-Object Net.WebClient).DownloadFile('https://yarnpkg.com/latest.msi', $msiPath)
Write-Host "Installing..."
cmd /c start /wait msiexec /i "$msiPath" /quiet
Write-Host "Yarn installed" -ForegroundColor Green
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment