| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent f23a0e2 commit ce789f1
55 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -10,7 +10,7 @@ Addons provide an interface between JavaScript and C/C++ libraries. | |||
| 10 | 10 | There are three options for implementing addons: N-API, nan, or direct | |
| 11 | 11 | use of internal V8, libuv and Node.js libraries. Unless there is a need for | |
| 12 | 12 | direct access to functionality which is not exposed by N-API, use N-API. | |
| 13 | - Refer to [C/C++ addons with N-API](n-api.html) for more information on N-API. | ||
| 13 | + Refer to [C/C++ addons with N-API](n-api.md) for more information on N-API. | ||
| 14 | 14 | ||
| 15 | 15 | When not using N-API, implementing addons is complicated, | |
| 16 | 16 | involving knowledge of several components and APIs: | |
@@ -452,7 +452,7 @@ in the N-API are used. | |||
| 452 | 452 | ||
| 453 | 453 | Creating and maintaining an addon that benefits from the ABI stability | |
| 454 | 454 | provided by N-API carries with it certain | |
| 455 | - [implementation considerations](n-api.html#n_api_implications_of_abi_stability). | ||
| 455 | + [implementation considerations](n-api.md#n_api_implications_of_abi_stability). | ||
| 456 | 456 | ||
| 457 | 457 | To use N-API in the above "Hello world" example, replace the content of | |
| 458 | 458 | `hello.cc` with the following. All other instructions remain the same. | |
@@ -490,7 +490,7 @@ NAPI_MODULE(NODE_GYP_MODULE_NAME, init) | |||
| 490 | 490 | ``` | |
| 491 | 491 | ||
| 492 | 492 | The functions available and how to use them are documented in | |
| 493 | - [C/C++ addons with N-API](n-api.html). | ||
| 493 | + [C/C++ addons with N-API](n-api.md). | ||
| 494 | 494 | ||
| 495 | 495 | ## Addon examples | |
| 496 | 496 | ||
@@ -1356,7 +1356,7 @@ console.log(result); | |||
| 1356 | 1356 | // Prints: 30 | |
| 1357 | 1357 | ``` | |
| 1358 | 1358 | ||
| 1359 | - [`Worker`]: worker_threads.html#worker_threads_class_worker | ||
| 1359 | + [`Worker`]: worker_threads.md#worker_threads_class_worker | ||
| 1360 | 1360 | [Electron]: https://electronjs.org/ | |
| 1361 | 1361 | [Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide | |
| 1362 | 1362 | [Linking to libraries included with Node.js]: #addons_linking_to_libraries_included_with_node_js | |
@@ -1367,5 +1367,5 @@ console.log(result); | |||
| 1367 | 1367 | [installation instructions]: https://github.com/nodejs/node-gyp#installation | |
| 1368 | 1368 | [libuv]: https://github.com/libuv/libuv | |
| 1369 | 1369 | [node-gyp]: https://github.com/nodejs/node-gyp | |
| 1370 | - [require]: modules.html#modules_require_id | ||
| 1370 | + [require]: modules.md#modules_require_id | ||
| 1371 | 1371 | [v8-docs]: https://v8docs.nodesource.com/ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -64,7 +64,7 @@ assert.deepEqual([[[1, 2, 3]], 4, 5], [[[1, 2, '3']], 4, 5]); | |||
| 64 | 64 | To deactivate the colors, use the `NO_COLOR` or `NODE_DISABLE_COLORS` | |
| 65 | 65 | environment variables. This will also deactivate the colors in the REPL. For | |
| 66 | 66 | more on color support in terminal environments, read the tty | |
| 67 | - [getColorDepth()](tty.html#tty_writestream_getcolordepth_env) documentation. | ||
| 67 | + [getColorDepth()](tty.md#tty_writestream_getcolordepth_env) documentation. | ||
| 68 | 68 | ||
| 69 | 69 | ## Legacy assertion mode | |
| 70 | 70 | ||
@@ -1558,15 +1558,15 @@ argument. | |||
| 1558 | 1558 | ||
| 1559 | 1559 | [`AssertionError`]: #assert_class_assert_assertionerror | |
| 1560 | 1560 | [`Class`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes | |
| 1561 | - [`ERR_INVALID_RETURN_VALUE`]: errors.html#errors_err_invalid_return_value | ||
| 1562 | - [`Error.captureStackTrace`]: errors.html#errors_error_capturestacktrace_targetobject_constructoropt | ||
| 1563 | - [`Error`]: errors.html#errors_class_error | ||
| 1561 | + [`ERR_INVALID_RETURN_VALUE`]: errors.md#errors_err_invalid_return_value | ||
| 1562 | + [`Error.captureStackTrace`]: errors.md#errors_error_capturestacktrace_targetobject_constructoropt | ||
| 1563 | + [`Error`]: errors.md#errors_class_error | ||
| 1564 | 1564 | [`Map`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map | |
| 1565 | 1565 | [`Object.is()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is | |
| 1566 | 1566 | [`RegExp`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions | |
| 1567 | 1567 | [`Set`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set | |
| 1568 | 1568 | [`Symbol`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol | |
| 1569 | - [`TypeError`]: errors.html#errors_class_typeerror | ||
| 1569 | + [`TypeError`]: errors.md#errors_class_typeerror | ||
| 1570 | 1570 | [`WeakMap`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap | |
| 1571 | 1571 | [`WeakSet`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet | |
| 1572 | 1572 | [`CallTracker`]: #assert_class_assert_calltracker | |
@@ -1581,7 +1581,7 @@ argument. | |||
| 1581 | 1581 | [`assert.ok()`]: #assert_assert_ok_value_message | |
| 1582 | 1582 | [`assert.strictEqual()`]: #assert_assert_strictequal_actual_expected_message | |
| 1583 | 1583 | [`assert.throws()`]: #assert_assert_throws_fn_error_message | |
| 1584 | - [`process.on('exit')`]: process.html#process_event_exit | ||
| 1584 | + [`process.on('exit')`]: process.md#process_event_exit | ||
| 1585 | 1585 | [`tracker.calls()`]: #assert_tracker_calls_fn_exact | |
| 1586 | 1586 | [`tracker.verify()`]: #assert_tracker_verify | |
| 1587 | 1587 | [strict assertion mode]: #assert_strict_assertion_mode | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1173,10 +1173,10 @@ to associate the asynchronous operation with the correct execution context. | |||
| 1173 | 1173 | [`destroy` callback]: #async_hooks_destroy_asyncid | |
| 1174 | 1174 | [`init` callback]: #async_hooks_init_asyncid_type_triggerasyncid_resource | |
| 1175 | 1175 | [`promiseResolve` callback]: #async_hooks_promiseresolve_asyncid | |
| 1176 | - [`EventEmitter`]: events.html#events_class_eventemitter | ||
| 1176 | + [`EventEmitter`]: events.md#events_class_eventemitter | ||
| 1177 | 1177 | [Hook Callbacks]: #async_hooks_hook_callbacks | |
| 1178 | 1178 | [PromiseHooks]: https://docs.google.com/document/d/1rda3yKGHimKIhg5YeoAmCOtyURgsbTH_qaYR79FELlk/edit | |
| 1179 | - [`Stream`]: stream.html#stream_stream | ||
| 1180 | - [`Worker`]: worker_threads.html#worker_threads_class_worker | ||
| 1179 | + [`Stream`]: stream.md#stream_stream | ||
| 1180 | + [`Worker`]: worker_threads.md#worker_threads_class_worker | ||
| 1181 | 1181 | [promise execution tracking]: #async_hooks_promise_execution_tracking | |
| 1182 | - [`util.promisify()`]: util.html#util_util_promisify_original | ||
| 1182 | + [`util.promisify()`]: util.md#util_util_promisify_original | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3273,9 +3273,9 @@ introducing security vulnerabilities into an application. | |||
| 3273 | 3273 | [`Buffer.from(string)`]: #buffer_static_method_buffer_from_string_encoding | |
| 3274 | 3274 | [`Buffer.poolSize`]: #buffer_class_property_buffer_poolsize | |
| 3275 | 3275 | [`DataView`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView | |
| 3276 | - [`ERR_INVALID_BUFFER_SIZE`]: errors.html#ERR_INVALID_BUFFER_SIZE | ||
| 3277 | - [`ERR_INVALID_OPT_VALUE`]: errors.html#ERR_INVALID_OPT_VALUE | ||
| 3278 | - [`ERR_OUT_OF_RANGE`]: errors.html#ERR_OUT_OF_RANGE | ||
| 3276 | + [`ERR_INVALID_BUFFER_SIZE`]: errors.md#ERR_INVALID_BUFFER_SIZE | ||
| 3277 | + [`ERR_INVALID_OPT_VALUE`]: errors.md#ERR_INVALID_OPT_VALUE | ||
| 3278 | + [`ERR_OUT_OF_RANGE`]: errors.md#ERR_OUT_OF_RANGE | ||
| 3279 | 3279 | [`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify | |
| 3280 | 3280 | [`SharedArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer | |
| 3281 | 3281 | [`String#indexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf | |
@@ -3300,7 +3300,7 @@ introducing security vulnerabilities into an application. | |||
| 3300 | 3300 | [`buffer.constants.MAX_LENGTH`]: #buffer_buffer_constants_max_length | |
| 3301 | 3301 | [`buffer.constants.MAX_STRING_LENGTH`]: #buffer_buffer_constants_max_string_length | |
| 3302 | 3302 | [`buffer.kMaxLength`]: #buffer_buffer_kmaxlength | |
| 3303 | - [`util.inspect()`]: util.html#util_util_inspect_object_options | ||
| 3303 | + [`util.inspect()`]: util.md#util_util_inspect_object_options | ||
| 3304 | 3304 | [ASCII]: https://en.wikipedia.org/wiki/ASCII | |
| 3305 | 3305 | [Base64]: https://en.wikipedia.org/wiki/Base64 | |
| 3306 | 3306 | [ISO-8859-1]: https://en.wikipedia.org/wiki/ISO-8859-1 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1580,13 +1580,13 @@ Therefore, this feature requires opting in by setting the | |||
| 1580 | 1580 | or [`child_process.fork()`][]. | |
| 1581 | 1581 | ||
| 1582 | 1582 | [Advanced serialization]: #child_process_advanced_serialization | |
| 1583 | - [`'disconnect'`]: process.html#process_event_disconnect | ||
| 1583 | + [`'disconnect'`]: process.md#process_event_disconnect | ||
| 1584 | 1584 | [`'error'`]: #child_process_event_error | |
| 1585 | 1585 | [`'exit'`]: #child_process_event_exit | |
| 1586 | - [`'message'`]: process.html#process_event_message | ||
| 1586 | + [`'message'`]: process.md#process_event_message | ||
| 1587 | 1587 | [`ChildProcess`]: #child_process_child_process | |
| 1588 | - [`Error`]: errors.html#errors_class_error | ||
| 1589 | - [`EventEmitter`]: events.html#events_class_eventemitter | ||
| 1588 | + [`Error`]: errors.md#errors_class_error | ||
| 1589 | + [`EventEmitter`]: events.md#events_class_eventemitter | ||
| 1590 | 1590 | [`child_process.exec()`]: #child_process_child_process_exec_command_options_callback | |
| 1591 | 1591 | [`child_process.execFile()`]: #child_process_child_process_execfile_file_args_options_callback | |
| 1592 | 1592 | [`child_process.execFileSync()`]: #child_process_child_process_execfilesync_file_args_options | |
@@ -1595,13 +1595,13 @@ or [`child_process.fork()`][]. | |||
| 1595 | 1595 | [`child_process.spawn()`]: #child_process_child_process_spawn_command_args_options | |
| 1596 | 1596 | [`child_process.spawnSync()`]: #child_process_child_process_spawnsync_command_args_options | |
| 1597 | 1597 | [`maxBuffer` and Unicode]: #child_process_maxbuffer_and_unicode | |
| 1598 | - [`net.Server`]: net.html#net_class_net_server | ||
| 1599 | - [`net.Socket`]: net.html#net_class_net_socket | ||
| 1598 | + [`net.Server`]: net.md#net_class_net_server | ||
| 1599 | + [`net.Socket`]: net.md#net_class_net_socket | ||
| 1600 | 1600 | [`options.detached`]: #child_process_options_detached | |
| 1601 | - [`process.disconnect()`]: process.html#process_process_disconnect | ||
| 1602 | - [`process.env`]: process.html#process_process_env | ||
| 1603 | - [`process.execPath`]: process.html#process_process_execpath | ||
| 1604 | - [`process.send()`]: process.html#process_process_send_message_sendhandle_options_callback | ||
| 1601 | + [`process.disconnect()`]: process.md#process_process_disconnect | ||
| 1602 | + [`process.env`]: process.md#process_process_env | ||
| 1603 | + [`process.execPath`]: process.md#process_process_execpath | ||
| 1604 | + [`process.send()`]: process.md#process_process_send_message_sendhandle_options_callback | ||
| 1605 | 1605 | [`stdio`]: #child_process_options_stdio | |
| 1606 | 1606 | [`subprocess.connected`]: #child_process_subprocess_connected | |
| 1607 | 1607 | [`subprocess.disconnect()`]: #child_process_subprocess_disconnect | |
@@ -1611,9 +1611,9 @@ or [`child_process.fork()`][]. | |||
| 1611 | 1611 | [`subprocess.stdin`]: #child_process_subprocess_stdin | |
| 1612 | 1612 | [`subprocess.stdio`]: #child_process_subprocess_stdio | |
| 1613 | 1613 | [`subprocess.stdout`]: #child_process_subprocess_stdout | |
| 1614 | - [`util.promisify()`]: util.html#util_util_promisify_original | ||
| 1614 | + [`util.promisify()`]: util.md#util_util_promisify_original | ||
| 1615 | 1615 | [Default Windows shell]: #child_process_default_windows_shell | |
| 1616 | 1616 | [HTML structured clone algorithm]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm | |
| 1617 | 1617 | [Shell requirements]: #child_process_shell_requirements | |
| 1618 | 1618 | [synchronous counterparts]: #child_process_synchronous_process_creation | |
| 1619 | - [v8.serdes]: v8.html#v8_serialization_api | ||
| 1619 | + [v8.serdes]: v8.md#v8_serialization_api | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1554,27 +1554,27 @@ $ node --max-old-space-size=1536 index.js | |||
| 1554 | 1554 | ``` | |
| 1555 | 1555 | ||
| 1556 | 1556 | [Chrome DevTools Protocol]: https://chromedevtools.github.io/devtools-protocol/ | |
| 1557 | - [REPL]: repl.html | ||
| 1557 | + [REPL]: repl.md | ||
| 1558 | 1558 | [ScriptCoverage]: https://chromedevtools.github.io/devtools-protocol/tot/Profiler#type-ScriptCoverage | |
| 1559 | 1559 | [Source Map]: https://sourcemaps.info/spec.html | |
| 1560 | 1560 | [Subresource Integrity]: https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity | |
| 1561 | 1561 | [V8 JavaScript code coverage]: https://v8project.blogspot.com/2017/12/javascript-code-coverage.html | |
| 1562 | 1562 | [`--openssl-config`]: #cli_openssl_config_file | |
| 1563 | 1563 | [`Atomics.wait()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait | |
| 1564 | - [`Buffer`]: buffer.html#buffer_class_buffer | ||
| 1564 | + [`Buffer`]: buffer.md#buffer_class_buffer | ||
| 1565 | 1565 | [`NODE_OPTIONS`]: #cli_node_options_options | |
| 1566 | - [`SlowBuffer`]: buffer.html#buffer_class_slowbuffer | ||
| 1567 | - [`process.setUncaughtExceptionCaptureCallback()`]: process.html#process_process_setuncaughtexceptioncapturecallback_fn | ||
| 1568 | - [`tls.DEFAULT_MAX_VERSION`]: tls.html#tls_tls_default_max_version | ||
| 1569 | - [`tls.DEFAULT_MIN_VERSION`]: tls.html#tls_tls_default_min_version | ||
| 1570 | - [`unhandledRejection`]: process.html#process_event_unhandledrejection | ||
| 1571 | - [`worker_threads.threadId`]: worker_threads.html#worker_threads_worker_threadid | ||
| 1572 | - [context-aware]: addons.html#addons_context_aware_addons | ||
| 1573 | - [customizing ESM specifier resolution]: esm.html#esm_customizing_esm_specifier_resolution_algorithm | ||
| 1574 | - [debugger]: debugger.html | ||
| 1566 | + [`SlowBuffer`]: buffer.md#buffer_class_slowbuffer | ||
| 1567 | + [`process.setUncaughtExceptionCaptureCallback()`]: process.md#process_process_setuncaughtexceptioncapturecallback_fn | ||
| 1568 | + [`tls.DEFAULT_MAX_VERSION`]: tls.md#tls_tls_default_max_version | ||
| 1569 | + [`tls.DEFAULT_MIN_VERSION`]: tls.md#tls_tls_default_min_version | ||
| 1570 | + [`unhandledRejection`]: process.md#process_event_unhandledrejection | ||
| 1571 | + [`worker_threads.threadId`]: worker_threads.md#worker_threads_worker_threadid | ||
| 1572 | + [context-aware]: addons.md#addons_context_aware_addons | ||
| 1573 | + [customizing ESM specifier resolution]: esm.md#esm_customizing_esm_specifier_resolution_algorithm | ||
| 1574 | + [debugger]: debugger.md | ||
| 1575 | 1575 | [debugging security implications]: https://nodejs.org/en/docs/guides/debugging-getting-started/#security-implications | |
| 1576 | - [emit_warning]: process.html#process_process_emitwarning_warning_type_code_ctor | ||
| 1577 | - [experimental ECMAScript Module loader]: esm.html#esm_experimental_loaders | ||
| 1576 | + [emit_warning]: process.md#process_process_emitwarning_warning_type_code_ctor | ||
| 1577 | + [experimental ECMAScript Module loader]: esm.md#esm_experimental_loaders | ||
| 1578 | 1578 | [jitless]: https://v8.dev/blog/jitless | |
| 1579 | 1579 | [libuv threadpool documentation]: https://docs.libuv.org/en/latest/threadpool.html | |
| 1580 | 1580 | [remote code execution]: https://www.owasp.org/index.php/Code_Injection | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -875,15 +875,15 @@ socket.on('data', (id) => { | |||
| 875 | 875 | ||
| 876 | 876 | [`.fork()`]: #cluster_cluster_fork_env | |
| 877 | 877 | [`.setupMaster()`]: #cluster_cluster_setupmaster_settings | |
| 878 | - [`ChildProcess.send()`]: child_process.html#child_process_subprocess_send_message_sendhandle_options_callback | ||
| 879 | - [`child_process.fork()`]: child_process.html#child_process_child_process_fork_modulepath_args_options | ||
| 880 | - [`child_process` event: `'exit'`]: child_process.html#child_process_event_exit | ||
| 881 | - [`child_process` event: `'message'`]: child_process.html#child_process_event_message | ||
| 878 | + [`ChildProcess.send()`]: child_process.md#child_process_subprocess_send_message_sendhandle_options_callback | ||
| 879 | + [`child_process.fork()`]: child_process.md#child_process_child_process_fork_modulepath_args_options | ||
| 880 | + [`child_process` event: `'exit'`]: child_process.md#child_process_event_exit | ||
| 881 | + [`child_process` event: `'message'`]: child_process.md#child_process_event_message | ||
| 882 | 882 | [`cluster.settings`]: #cluster_cluster_settings | |
| 883 | - [`disconnect()`]: child_process.html#child_process_subprocess_disconnect | ||
| 884 | - [`kill()`]: process.html#process_process_kill_pid_signal | ||
| 885 | - [`process` event: `'message'`]: process.html#process_event_message | ||
| 886 | - [`server.close()`]: net.html#net_event_close | ||
| 883 | + [`disconnect()`]: child_process.md#child_process_subprocess_disconnect | ||
| 884 | + [`kill()`]: process.md#process_process_kill_pid_signal | ||
| 885 | + [`process` event: `'message'`]: process.md#process_event_message | ||
| 886 | + [`server.close()`]: net.md#net_event_close | ||
| 887 | 887 | [`worker.exitedAfterDisconnect`]: #cluster_worker_exitedafterdisconnect | |
| 888 | - [Advanced serialization for `child_process`]: child_process.html#child_process_advanced_serialization | ||
| 889 | - [Child Process module]: child_process.html#child_process_child_process_fork_modulepath_args_options | ||
| 888 | + [Advanced serialization for `child_process`]: child_process.md#child_process_advanced_serialization | ||
| 889 | + [Child Process module]: child_process.md#child_process_child_process_fork_modulepath_args_options | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -554,12 +554,12 @@ This method does not display anything unless used in the inspector. The | |||
| 554 | 554 | [`console.profileEnd()`]: #console_console_profileend_label | |
| 555 | 555 | [`console.time()`]: #console_console_time_label | |
| 556 | 556 | [`console.timeEnd()`]: #console_console_timeend_label | |
| 557 | - [`process.stderr`]: process.html#process_process_stderr | ||
| 558 | - [`process.stdout`]: process.html#process_process_stdout | ||
| 559 | - [`util.format()`]: util.html#util_util_format_format_args | ||
| 560 | - [`util.inspect()`]: util.html#util_util_inspect_object_options | ||
| 561 | - [customizing `util.inspect()` colors]: util.html#util_customizing_util_inspect_colors | ||
| 557 | + [`process.stderr`]: process.md#process_process_stderr | ||
| 558 | + [`process.stdout`]: process.md#process_process_stdout | ||
| 559 | + [`util.format()`]: util.md#util_util_format_format_args | ||
| 560 | + [`util.inspect()`]: util.md#util_util_inspect_object_options | ||
| 561 | + [customizing `util.inspect()` colors]: util.md#util_customizing_util_inspect_colors | ||
| 562 | 562 | [falsy]: https://developer.mozilla.org/en-US/docs/Glossary/Falsy | |
| 563 | - [inspector]: debugger.html | ||
| 564 | - [note on process I/O]: process.html#process_a_note_on_process_i_o | ||
| 563 | + [inspector]: debugger.md | ||
| 564 | + [note on process I/O]: process.md#process_a_note_on_process_i_o | ||
| 565 | 565 | [truthy]: https://developer.mozilla.org/en-US/docs/Glossary/Truthy | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3544,11 +3544,11 @@ See the [list of SSL OP Flags][] for details. | |||
| 3544 | 3544 | </tr> | |
| 3545 | 3545 | </table> | |
| 3546 | 3546 | ||
| 3547 | - [`Buffer`]: buffer.html | ||
| 3547 | + [`Buffer`]: buffer.md | ||
| 3548 | 3548 | [`EVP_BytesToKey`]: https://www.openssl.org/docs/man1.1.0/crypto/EVP_BytesToKey.html | |
| 3549 | 3549 | [`KeyObject`]: #crypto_class_keyobject | |
| 3550 | 3550 | [`Sign`]: #crypto_class_sign | |
| 3551 | - [`UV_THREADPOOL_SIZE`]: cli.html#cli_uv_threadpool_size_size | ||
| 3551 | + [`UV_THREADPOOL_SIZE`]: cli.md#cli_uv_threadpool_size_size | ||
| 3552 | 3552 | [`Verify`]: #crypto_class_verify | |
| 3553 | 3553 | [`cipher.final()`]: #crypto_cipher_final_outputencoding | |
| 3554 | 3554 | [`cipher.update()`]: #crypto_cipher_update_data_inputencoding_outputencoding | |
@@ -3586,12 +3586,12 @@ See the [list of SSL OP Flags][] for details. | |||
| 3586 | 3586 | [`hmac.digest()`]: #crypto_hmac_digest_encoding | |
| 3587 | 3587 | [`hmac.update()`]: #crypto_hmac_update_data_inputencoding | |
| 3588 | 3588 | [`keyObject.export()`]: #crypto_keyobject_export_options | |
| 3589 | - [`postMessage()`]: worker_threads.html#worker_threads_port_postmessage_value_transferlist | ||
| 3589 | + [`postMessage()`]: worker_threads.md#worker_threads_port_postmessage_value_transferlist | ||
| 3590 | 3590 | [`sign.sign()`]: #crypto_sign_sign_privatekey_outputencoding | |
| 3591 | 3591 | [`sign.update()`]: #crypto_sign_update_data_inputencoding | |
| 3592 | - [`stream.Writable` options]: stream.html#stream_new_stream_writable_options | ||
| 3593 | - [`stream.transform` options]: stream.html#stream_new_stream_transform_options | ||
| 3594 | - [`util.promisify()`]: util.html#util_util_promisify_original | ||
| 3592 | + [`stream.Writable` options]: stream.md#stream_new_stream_writable_options | ||
| 3593 | + [`stream.transform` options]: stream.md#stream_new_stream_transform_options | ||
| 3594 | + [`util.promisify()`]: util.md#util_util_promisify_original | ||
| 3595 | 3595 | [`verify.update()`]: #crypto_verify_update_data_inputencoding | |
| 3596 | 3596 | [`verify.verify()`]: #crypto_verify_verify_object_signature_signatureencoding | |
| 3597 | 3597 | [AEAD algorithms]: https://en.wikipedia.org/wiki/Authenticated_encryption | |
@@ -3612,10 +3612,10 @@ See the [list of SSL OP Flags][] for details. | |||
| 3612 | 3612 | [RFC 3610]: https://www.rfc-editor.org/rfc/rfc3610.txt | |
| 3613 | 3613 | [RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt | |
| 3614 | 3614 | [RFC 5208]: https://www.rfc-editor.org/rfc/rfc5208.txt | |
| 3615 | - [encoding]: buffer.html#buffer_buffers_and_character_encodings | ||
| 3615 | + [encoding]: buffer.md#buffer_buffers_and_character_encodings | ||
| 3616 | 3616 | [initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector | |
| 3617 | 3617 | [list of SSL OP Flags]: https://wiki.openssl.org/index.php/List_of_SSL_OP_Flags#Table_of_Options | |
| 3618 | 3618 | [safe integers]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/isSafeInteger | |
| 3619 | 3619 | [scrypt]: https://en.wikipedia.org/wiki/Scrypt | |
| 3620 | - [stream]: stream.html | ||
| 3621 | - [stream-writable-write]: stream.html#stream_writable_write_chunk_encoding_callback | ||
| 3620 | + [stream]: stream.md | ||
| 3621 | + [stream-writable-write]: stream.md#stream_writable_write_chunk_encoding_callback | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -201,5 +201,5 @@ Chrome DevTools doesn't support debugging [worker threads][] yet. | |||
| 201 | 201 | ||
| 202 | 202 | [Chrome DevTools Protocol]: https://chromedevtools.github.io/devtools-protocol/ | |
| 203 | 203 | [V8 Inspector]: #debugger_v8_inspector_integration_for_node_js | |
| 204 | - [worker threads]: worker_threads.html | ||
| 204 | + [worker threads]: worker_threads.md | ||
| 205 | 205 | [ndb]: https://github.com/GoogleChromeLabs/ndb/ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments