mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
887f4c54ce
Adds NASM installation to the Boxstarter script. Refs: https://github.com/nodejs/node/issues/19918 PR-URL: https://github.com/nodejs/node/pull/19950 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com>
25 lines
950 B
Plaintext
25 lines
950 B
Plaintext
# Boxstarter (http://boxstarter.org/) script for Node.js prerequisites
|
|
#
|
|
# To install either open this link in IE or Edge:
|
|
# http://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter
|
|
#
|
|
# Or run those commands in an elevated Powershell terminal:
|
|
# iex ((New-Object System.Net.WebClient).DownloadString('http://boxstarter.org/bootstrapper.ps1'))
|
|
# get-boxstarter -Force
|
|
# Install-BoxstarterPackage https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter -DisableReboots
|
|
#
|
|
# For more detail see
|
|
# https://github.com/nodejs/node/blob/master/tools/bootstrap/README.md
|
|
#
|
|
|
|
# Git and Unix tools will be added to the PATH
|
|
choco install git -params /GitAndUnixToolsOnPath -y
|
|
choco install python2 -y
|
|
|
|
# Installs VS 2017 Build Tools
|
|
choco install visualstudio2017buildtools -y
|
|
choco install visualstudio2017-workload-vctools -y
|
|
|
|
# NASM
|
|
choco install nasm -y
|