• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Boxstarter (http://boxstarter.org/) script for Node.js prerequisites
2#
3# To install either open this link in IE or Edge:
4#  http://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/HEAD/tools/bootstrap/windows_boxstarter
5#
6# Or run those commands in an elevated Powershell terminal:
7#  iex ((New-Object System.Net.WebClient).DownloadString('http://boxstarter.org/bootstrapper.ps1'))
8#  get-boxstarter -Force
9#  Install-BoxstarterPackage https://raw.githubusercontent.com/nodejs/node/HEAD/tools/bootstrap/windows_boxstarter -DisableReboots
10#
11# For more detail see
12# https://github.com/nodejs/node/blob/HEAD/tools/bootstrap/README.md
13#
14
15# Git and Unix tools will be added to the PATH
16choco install git -params /GitAndUnixToolsOnPath -y
17choco install python python2 -y
18
19# Installs VS 2019 Build Tools
20choco install visualstudio2019buildtools -y
21choco install visualstudio2019-workload-vctools -y --params="--add Microsoft.VisualStudio.Component.VC.Tools.ARM64 --add Microsoft.VisualStudio.Component.VC.ATL.ARM64"
22
23# NASM
24choco install nasm -y
25