summaryrefslogtreecommitdiff
path: root/BUILDING.md
diff options
context:
space:
mode:
authorMaledong <maledong_github@outlook.com>2019-09-04 14:39:05 +0800
committerRich Trott <rtrott@gmail.com>2019-09-05 19:31:52 -0700
commitc6b7e748b0eead30df423bd267a855e773691519 (patch)
treedc8d3c1d017920952c81c72b8470cd05abdef777 /BUILDING.md
parent7bff96204bd2c4de4f7ff294d8d6be5a9c53c8d4 (diff)
downloadandroid-node-v8-c6b7e748b0eead30df423bd267a855e773691519.tar.gz
android-node-v8-c6b7e748b0eead30df423bd267a855e773691519.tar.bz2
android-node-v8-c6b7e748b0eead30df423bd267a855e773691519.zip
doc: change urls directly from 'http' to 'https'
There're some URLs with old links, change them together from 'http' to 'https'. Notice: 1. Since files of CHANGELOG may be generated through tools, I don't intend to change them together as the history track. 2. All the files in the 'deps' are of 3-rd parties, they will be overwritten for the next update, so avoid modifications for them. PR-URL: https://github.com/nodejs/node/pull/29422 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'BUILDING.md')
-rw-r--r--BUILDING.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/BUILDING.md b/BUILDING.md
index 064da2473d..aeb54583e9 100644
--- a/BUILDING.md
+++ b/BUILDING.md
@@ -501,16 +501,16 @@ $ backtrace
[Build Tools](https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2017),
with the default optional components.
* Basic Unix tools required for some tests,
- [Git for Windows](http://git-scm.com/download/win) includes Git Bash
+ [Git for Windows](https://git-scm.com/download/win) includes Git Bash
and tools which can be included in the global `PATH`.
-* The [NetWide Assembler](http://www.nasm.us/), for OpenSSL assembler modules.
+* The [NetWide Assembler](https://www.nasm.us/), for OpenSSL assembler modules.
If not installed in the default location, it needs to be manually added
to `PATH`. A build with the `openssl-no-asm` option does not need this, nor
does a build targeting ARM64 Windows.
Optional requirements to build the MSI installer package:
-* The [WiX Toolset v3.11](http://wixtoolset.org/releases/) and the
+* The [WiX Toolset v3.11](https://wixtoolset.org/releases/) and the
[Wix Toolset Visual Studio 2017 Extension](https://marketplace.visualstudio.com/items?itemName=RobMensching.WixToolsetVisualStudio2017Extension).
Optional requirements for compiling for Windows 10 on ARM (ARM64):
@@ -527,7 +527,7 @@ Optional requirements for compiling for Windows 10 on ARM (ARM64):
##### Option 2: Automated install with Boxstarter
<a name="boxstarter"></a>
-A [Boxstarter](http://boxstarter.org/) script can be used for easy setup of
+A [Boxstarter](https://boxstarter.org/) script can be used for easy setup of
Windows systems with all the required prerequisites for Node.js development.
This script will install the following [Chocolatey](https://chocolatey.org/)
packages:
@@ -541,8 +541,8 @@ packages:
* [NetWide Assembler](https://chocolatey.org/packages/nasm)
To install Node.js prerequisites using
-[Boxstarter WebLauncher](http://boxstarter.org/WebLauncher), open
-<http://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter>
+[Boxstarter WebLauncher](https://boxstarter.org/WebLauncher), open
+<https://boxstarter.org/package/nr/url?https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter>
with Internet Explorer or Edge browser on the target machine.
Alternatively, you can use PowerShell. Run those commands from an elevated
@@ -550,7 +550,7 @@ PowerShell terminal:
```powershell
Set-ExecutionPolicy Unrestricted -Force
-iex ((New-Object System.Net.WebClient).DownloadString('http://boxstarter.org/bootstrapper.ps1'))
+iex ((New-Object System.Net.WebClient).DownloadString('https://boxstarter.org/bootstrapper.ps1'))
get-boxstarter -Force
Install-BoxstarterPackage https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter -DisableReboots
```