@@ -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 )
@@ -713,39 +712,6 @@ To install Node.js prerequisites from PowerShell Terminal:
713712winget configure .\.configurations\configuration.dsc.yaml
714713```
715714
716- ##### Option 3: Automated install with Boxstarter
717-
718- A [ Boxstarter] ( https://boxstarter.org/ ) script can be used for easy setup of
719- Windows systems with all the required prerequisites for Node.js development.
720- This script will install the following [ Chocolatey] ( https://chocolatey.org/ )
721- packages:
722-
723- * [ Git for Windows] ( https://chocolatey.org/packages/git ) with the ` git ` and
724- Unix tools added to the ` PATH `
725- * [ Python 3.x] ( https://chocolatey.org/packages/python )
726- * [ Visual Studio 2022 Build Tools] ( https://chocolatey.org/packages/visualstudio2022buildtools )
727- with [ Visual C++ workload] ( https://chocolatey.org/packages/visualstudio2022-workload-vctools )
728- * [ NetWide Assembler] ( https://chocolatey.org/packages/nasm )
729-
730- To install Node.js prerequisites using
731- [ Boxstarter WebLauncher] ( https://boxstarter.org/weblauncher ) , visit
732- < https://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/HEAD/tools/bootstrap/windows_boxstarter >
733- with a supported browser.
734-
735- Alternatively, you can use PowerShell. Run those commands from
736- an elevated (Administrator) PowerShell terminal:
737-
738- ``` powershell
739- Set-ExecutionPolicy Unrestricted -Force
740- iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1'))
741- get-boxstarter -Force
742- Install-BoxstarterPackage https://raw.githubusercontent.com/nodejs/node/HEAD/tools/bootstrap/windows_boxstarter -DisableReboots
743- refreshenv
744- ```
745-
746- The entire installation using Boxstarter will take up approximately 10 GB of
747- disk space.
748-
749715#### Building Node.js
750716
751717* Remember to first clone the Node.js repository with the Git command
0 commit comments