@@ -38,7 +38,6 @@ file a new issue.
3838 * [ Windows Prerequisites] ( #windows-prerequisites )
3939 * [ Option 1: Manual install] ( #option-1-manual-install )
4040 * [ Option 2: Automated install with WinGet] ( #option-2-automated-install-with-winget )
41- * [ Option 3: Automated install with Boxstarter] ( #option-3-automated-install-with-boxstarter )
4241 * [ Building Node.js] ( #building-nodejs-2 )
4342 * [ Using ccache] ( #using-ccache )
4443 * [ Android] ( #android )
@@ -729,39 +728,6 @@ winget configure .\.configurations\configuration.dsc.yaml
729728
730729To add optional components for MSI or ARM64 builds, refer to [ Option 1: Manual install] ( #option-1-manual-install ) .
731730
732- ##### Option 3: Automated install with Boxstarter
733-
734- A [ Boxstarter] ( https://boxstarter.org/ ) script can be used for easy setup of
735- Windows systems with all the required prerequisites for Node.js development.
736- This script will install the following [ Chocolatey] ( https://chocolatey.org/ )
737- packages:
738-
739- * [ Git for Windows] ( https://chocolatey.org/packages/git ) with the ` git ` and
740- Unix tools added to the ` PATH `
741- * [ Python 3.x] ( https://chocolatey.org/packages/python )
742- * [ Visual Studio 2022 Build Tools] ( https://chocolatey.org/packages/visualstudio2022buildtools )
743- with [ Visual C++ workload] ( https://chocolatey.org/packages/visualstudio2022-workload-vctools )
744- * [ NetWide Assembler] ( https://chocolatey.org/packages/nasm )
745-
746- To install Node.js prerequisites using
747- [ Boxstarter WebLauncher] ( https://boxstarter.org/weblauncher ) , visit
748- < https://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/HEAD/tools/bootstrap/windows_boxstarter >
749- with a supported browser.
750-
751- Alternatively, you can use PowerShell. Run those commands from
752- an elevated (Administrator) PowerShell terminal:
753-
754- ``` powershell
755- Set-ExecutionPolicy Unrestricted -Force
756- iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1'))
757- get-boxstarter -Force
758- Install-BoxstarterPackage https://raw.githubusercontent.com/nodejs/node/HEAD/tools/bootstrap/windows_boxstarter -DisableReboots
759- refreshenv
760- ```
761-
762- The entire installation using Boxstarter will take up approximately 10 GB of
763- disk space.
764-
765731#### Building Node.js
766732
767733* Remember to first clone the Node.js repository with the Git command
0 commit comments