Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ed055c0

Browse filesBrowse files
sapicsaddaleax
authored andcommitted
doc: replace http to https of link urls
PR-URL: #34158 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent cef9921 commit ed055c0
Copy full SHA for ed055c0

File tree

Expand file treeCollapse file tree

13 files changed

+27
-27
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

13 files changed

+27
-27
lines changed
Open diff view settings
Collapse file

‎doc/api/cli.md‎

Copy file name to clipboardExpand all lines: doc/api/cli.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1510,5 +1510,5 @@ $ node --max-old-space-size=1536 index.js
15101510
[emit_warning]: process.html#process_process_emitwarning_warning_type_code_ctor
15111511
[experimental ECMAScript Module loader]: esm.html#esm_experimental_loaders
15121512
[jitless]: https://v8.dev/blog/jitless
1513-
[libuv threadpool documentation]: http://docs.libuv.org/en/latest/threadpool.html
1513+
[libuv threadpool documentation]: https://docs.libuv.org/en/latest/threadpool.html
15141514
[remote code execution]: https://www.owasp.org/index.php/Code_Injection
Collapse file

‎doc/api/dns.md‎

Copy file name to clipboardExpand all lines: doc/api/dns.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ The [`dns.setServers()`][] method affects only [`dns.resolve()`][],
616616
[`dns.lookup()`][]).
617617

618618
This method works much like
619-
[resolve.conf](http://man7.org/linux/man-pages/man5/resolv.conf.5.html).
619+
[resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).
620620
That is, if attempting to resolve with the first server provided results in a
621621
`NOTFOUND` error, the `resolve()` method will *not* attempt to resolve with
622622
subsequent servers provided. Fallback DNS servers will only be used if the
@@ -1080,7 +1080,7 @@ The `dnsPromises.setServers()` method must not be called while a DNS query is in
10801080
progress.
10811081

10821082
This method works much like
1083-
[resolve.conf](http://man7.org/linux/man-pages/man5/resolv.conf.5.html).
1083+
[resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).
10841084
That is, if attempting to resolve with the first server provided results in a
10851085
`NOTFOUND` error, the `resolve()` method will *not* attempt to resolve with
10861086
subsequent servers provided. Fallback DNS servers will only be used if the
Collapse file

‎doc/api/errors.md‎

Copy file name to clipboardExpand all lines: doc/api/errors.md
+3-3Lines changed: 3 additions & 3 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -2560,7 +2560,7 @@ such as `process.stdout.on('data')`.
25602560
[`dgram.createSocket()`]: dgram.html#dgram_dgram_createsocket_options_callback
25612561
[`dgram.disconnect()`]: dgram.html#dgram_socket_disconnect
25622562
[`dgram.remoteAddress()`]: dgram.html#dgram_socket_remoteaddress
2563-
[`errno`(3) man page]: http://man7.org/linux/man-pages/man3/errno.3.html
2563+
[`errno`(3) man page]: https://man7.org/linux/man-pages/man3/errno.3.html
25642564
[`fs.Dir`]: fs.html#fs_class_fs_dir
25652565
[`fs.readFileSync`]: fs.html#fs_fs_readfilesync_path_options
25662566
[`fs.readdir`]: fs.html#fs_fs_readdir_path_options_callback
@@ -2572,7 +2572,7 @@ such as `process.stdout.on('data')`.
25722572
[`hash.update()`]: crypto.html#crypto_hash_update_data_inputencoding
25732573
[`http`]: http.html
25742574
[`https`]: https.html
2575-
[`libuv Error handling`]: http://docs.libuv.org/en/v1.x/errors.html
2575+
[`libuv Error handling`]: https://docs.libuv.org/en/v1.x/errors.html
25762576
[`net`]: net.html
25772577
[`new URL(input)`]: url.html#url_new_url_input_base
25782578
[`new URLSearchParams(iterable)`]: url.html#url_new_urlsearchparams_iterable
@@ -2605,7 +2605,7 @@ such as `process.stdout.on('data')`.
26052605
[file descriptors]: https://en.wikipedia.org/wiki/File_descriptor
26062606
[policy]: policy.html
26072607
[stream-based]: stream.html
2608-
[syscall]: http://man7.org/linux/man-pages/man2/syscalls.2.html
2608+
[syscall]: https://man7.org/linux/man-pages/man2/syscalls.2.html
26092609
[Subresource Integrity specification]: https://www.w3.org/TR/SRI/#the-integrity-attribute
26102610
[try-catch]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch
26112611
[vm]: vm.html
Collapse file

‎doc/api/esm.md‎

Copy file name to clipboardExpand all lines: doc/api/esm.md
+4-4Lines changed: 4 additions & 4 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1842,11 +1842,11 @@ success!
18421842
[`module.createRequire()`]: modules.html#modules_module_createrequire_filename
18431843
[`module.syncBuiltinESMExports()`]: modules.html#modules_module_syncbuiltinesmexports
18441844
[`transformSource` hook]: #esm_code_transformsource_code_hook
1845-
[ArrayBuffer]: http://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer-constructor
1845+
[ArrayBuffer]: https://www.ecma-international.org/ecma-262/6.0/#sec-arraybuffer-constructor
18461846
[SharedArrayBuffer]: https://tc39.es/ecma262/#sec-sharedarraybuffer-constructor
1847-
[string]: http://www.ecma-international.org/ecma-262/6.0/#sec-string-constructor
1848-
[TypedArray]: http://www.ecma-international.org/ecma-262/6.0/#sec-typedarray-objects
1849-
[Uint8Array]: http://www.ecma-international.org/ecma-262/6.0/#sec-uint8array
1847+
[string]: https://www.ecma-international.org/ecma-262/6.0/#sec-string-constructor
1848+
[TypedArray]: https://www.ecma-international.org/ecma-262/6.0/#sec-typedarray-objects
1849+
[Uint8Array]: https://www.ecma-international.org/ecma-262/6.0/#sec-uint8array
18501850
[`util.TextDecoder`]: util.html#util_class_util_textdecoder
18511851
[dynamic instantiate hook]: #esm_code_dynamicinstantiate_code_hook
18521852
[import an ES or CommonJS module for its side effects only]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import#Import_a_module_for_its_side_effects_only
Collapse file

‎doc/api/fs.md‎

Copy file name to clipboardExpand all lines: doc/api/fs.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -5833,7 +5833,7 @@ the file contents.
58335833
[`fsPromises.open()`]: #fs_fspromises_open_path_flags_mode
58345834
[`fsPromises.opendir()`]: #fs_fspromises_opendir_path_options
58355835
[`fsPromises.utimes()`]: #fs_fspromises_utimes_path_atime_mtime
5836-
[`inotify(7)`]: http://man7.org/linux/man-pages/man7/inotify.7.html
5836+
[`inotify(7)`]: https://man7.org/linux/man-pages/man7/inotify.7.html
58375837
[`kqueue(2)`]: https://www.freebsd.org/cgi/man.cgi?query=kqueue&sektion=2
58385838
[`net.Socket`]: net.html#net_class_net_socket
58395839
[`stat()`]: fs.html#fs_fs_stat_path_options_callback
Collapse file

‎doc/api/n-api.md‎

Copy file name to clipboardExpand all lines: doc/api/n-api.md
+2-2Lines changed: 2 additions & 2 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -5834,8 +5834,8 @@ This API may only be called from the main thread.
58345834
[`node-addon-api`]: https://github.com/nodejs/node-addon-api
58355835
[`node_api.h`]: https://github.com/nodejs/node/blob/master/src/node_api.h
58365836
[`process.release`]: process.html#process_process_release
5837-
[`uv_ref`]: http://docs.libuv.org/en/v1.x/handle.html#c.uv_ref
5838-
[`uv_unref`]: http://docs.libuv.org/en/v1.x/handle.html#c.uv_unref
5837+
[`uv_ref`]: https://docs.libuv.org/en/v1.x/handle.html#c.uv_ref
5838+
[`uv_unref`]: https://docs.libuv.org/en/v1.x/handle.html#c.uv_unref
58395839
[async_hooks `type`]: async_hooks.html#async_hooks_type
58405840
[context-aware addons]: addons.html#addons_context_aware_addons
58415841
[docs]: https://github.com/nodejs/node-addon-api#api-documentation
Collapse file

‎doc/api/net.md‎

Copy file name to clipboardExpand all lines: doc/api/net.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -1261,7 +1261,7 @@ Returns `true` if input is a version 6 IP address, otherwise returns `false`.
12611261
[`server.listen(handle)`]: #net_server_listen_handle_backlog_callback
12621262
[`server.listen(options)`]: #net_server_listen_options_callback
12631263
[`server.listen(path)`]: #net_server_listen_path_backlog_callback
1264-
[`socket(7)`]: http://man7.org/linux/man-pages/man7/socket.7.html
1264+
[`socket(7)`]: https://man7.org/linux/man-pages/man7/socket.7.html
12651265
[`socket.connect()`]: #net_socket_connect
12661266
[`socket.connect(options)`]: #net_socket_connect_options_connectlistener
12671267
[`socket.connect(path)`]: #net_socket_connect_path_connectlistener
Collapse file

‎doc/api/process.md‎

Copy file name to clipboardExpand all lines: doc/api/process.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -2603,6 +2603,6 @@ cases:
26032603
[process_warning]: #process_event_warning
26042604
[report documentation]: report.html
26052605
[terminal raw mode]: tty.html#tty_readstream_setrawmode_mode
2606-
[uv_rusage_t]: http://docs.libuv.org/en/v1.x/misc.html#c.uv_rusage_t
2606+
[uv_rusage_t]: https://docs.libuv.org/en/v1.x/misc.html#c.uv_rusage_t
26072607
[wikipedia_minor_fault]: https://en.wikipedia.org/wiki/Page_fault#Minor
26082608
[wikipedia_major_fault]: https://en.wikipedia.org/wiki/Page_fault#Major
Collapse file

‎doc/changelogs/CHANGELOG_ARCHIVE.md‎

Copy file name to clipboardExpand all lines: doc/changelogs/CHANGELOG_ARCHIVE.md
+3-3Lines changed: 3 additions & 3 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -3128,8 +3128,8 @@ https://github.com/nodejs/node/commit/bb0d1e65e1671aaeb21fac186b066701da0bc33b
31283128

31293129
* Major API Changes
31303130
* Promises removed. See
3131-
http://groups.google.com/group/nodejs/msg/426f3071f3eec16b
3132-
http://groups.google.com/group/nodejs/msg/df199d233ff17efa
3131+
https://groups.google.com/group/nodejs/msg/426f3071f3eec16b
3132+
https://groups.google.com/group/nodejs/msg/df199d233ff17efa
31333133
The API for fs was
31343134
fs.readdir("/usr").addCallback(function (files) {
31353135
puts("/usr files: " + files);
@@ -3716,7 +3716,7 @@ https://github.com/nodejs/node/commit/77d407df2826b20e9177c26c0d2bb4481e497937
37163716
* Move EventEmitter.prototype.emit() completely into C++.
37173717

37183718
* Bugfix: Fix memory leak in event emitters.
3719-
http://groups.google.com/group/nodejs/browse_thread/thread/a8d1dfc2fd57a6d1
3719+
https://groups.google.com/group/nodejs/browse_thread/thread/a8d1dfc2fd57a6d1
37203720

37213721
* Bugfix: Had problems reading scripts with non-ascii characters.
37223722
* Bugfix: Fix Detach() in node::Server
Collapse file

‎doc/changelogs/CHANGELOG_IOJS.md‎

Copy file name to clipboardExpand all lines: doc/changelogs/CHANGELOG_IOJS.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ See https://github.com/nodejs/io.js/labels/confirmed-bug for complete and curren
406406
* **dgram**: If an error occurs within `socket.send()` and a callback has been provided, the error is only passed as the first argument to the callback and not emitted on the `socket` object; previous behavior was to do both (Matteo Collina & Chris Dickinson) [#1796](https://github.com/nodejs/node/pull/1796)
407407
* **freelist**: Deprecate the undocumented `freelist` core module (Sakthipriyan Vairamani) [#2176](https://github.com/nodejs/node/pull/2176).
408408
* **http**:
409-
* Status codes now all use the official [IANA names](http://www.iana.org/assignments/http-status-codes) as per [RFC7231](https://tools.ietf.org/html/rfc7231), e.g. `http.STATUS_CODES[414]` now returns `'URI Too Long'` rather than `'Request-URI Too Large'` (jomo) [#1470](https://github.com/nodejs/node/pull/1470).
409+
* Status codes now all use the official [IANA names](https://www.iana.org/assignments/http-status-codes) as per [RFC7231](https://tools.ietf.org/html/rfc7231), e.g. `http.STATUS_CODES[414]` now returns `'URI Too Long'` rather than `'Request-URI Too Large'` (jomo) [#1470](https://github.com/nodejs/node/pull/1470).
410410
* Calling .getName() on an HTTP agent no longer returns a trailing colon, HTTPS agents will no longer return an extra colon near the middle of the string (Brendan Ashworth) [#1617](https://github.com/nodejs/node/pull/1617).
411411
* **node**:
412412
* `NODE_MODULE_VERSION` has been bumped to `45` to reflect the break in ABI (Rod Vagg) [#2096](https://github.com/nodejs/node/pull/2096).

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.