0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/lib/internal
cjihrig 823c988b48
report: remove verbose setting
This commit removes the --diagnostic-report-verbose CLI option
and all associated logic. The flag is currently only used in one
place, and only reflects the settings at startup. Additionally,
Node tends to use the NODE_DEBUG mechanism for adding verbose
output.

PR-URL: https://github.com/nodejs/node/pull/26195
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
2019-02-20 15:15:57 -05:00
..
assert assert: refactor internal assert.js 2019-02-08 00:01:07 -08:00
bootstrap process: start coverage collection before bootstrap 2019-02-18 17:37:33 +08:00
cluster cluster: migrate round_robin_handle to internal assert 2019-02-14 00:00:51 +01:00
console console: refactor inspector console extension installation 2019-01-23 20:23:23 +08:00
coverage-gen process: start coverage collection before bootstrap 2019-02-18 17:37:33 +08:00
crypto crypto: include 'Buffer' in error output of Hash.update method 2019-02-09 17:21:41 +01:00
dns dns: use IDNA 2008 to encode non-ascii hostnames 2019-01-28 20:42:44 +01:00
fs fs, src, lib: fix blksize & blocks on Windows 2019-02-15 01:55:58 -05:00
http2 http2: improve compat performance 2019-02-11 08:50:07 +01:00
main lib: merge 'undefined' into one 'break' branch 2019-02-14 00:03:02 +01:00
modules module: revert module._compile to original state if module is patched 2019-02-19 20:58:37 +05:30
policy lib: use internal/options to query --abort-on-uncaught-exception 2019-02-08 08:09:56 +08:00
process report: remove verbose setting 2019-02-20 15:15:57 -05:00
repl lib: fix the typo error 2019-02-13 05:22:58 +01:00
streams doc,lib,test: capitalize comment sentences 2018-12-17 17:14:35 +01:00
test lib: replace 'assert' with 'internal/assert' for many built-ins 2019-02-08 00:01:12 -08:00
util util: update set iterator entries inspection 2019-02-20 18:33:10 +01:00
vm lib: save primordials during bootstrap and use it in builtins 2019-02-02 05:40:47 +08:00
worker worker: do not add removed methods to MessagePort 2019-02-17 17:41:12 +01:00
assert.js assert: add internal assert.fail() 2019-02-14 00:00:50 +01:00
async_hooks.js lib: use internal/options to query --abort-on-uncaught-exception 2019-02-08 08:09:56 +08:00
buffer.js buffer: move Buffer prototype wiring into internal/buffer.js 2019-01-10 16:59:27 +08:00
child_process.js lib: replace 'assert' with 'internal/assert' for many built-ins 2019-02-08 00:01:12 -08:00
cli_table.js lib,test: remove lib/internal/test/unicode.js 2019-01-03 10:25:59 -08:00
constants.js
dgram.js
domexception.js lib: do not register DOMException in a module 2018-12-01 07:01:51 +08:00
encoding.js lib: expose all type checks from the internal types module 2018-12-27 22:34:47 +01:00
error-serdes.js worker: use correct ctor for error serialization 2019-02-08 21:30:59 +01:00
errors.js lib: replace 'assert' with 'internal/assert' for many built-ins 2019-02-08 00:01:12 -08:00
fixed_queue.js
freelist.js
http.js http,https: protect against slow headers attack 2018-11-28 11:36:34 +11:00
idna.js lib: convert legacy process.binding to internalBinding 2019-02-18 07:21:48 +01:00
inspector_async_hook.js process: register the inspector async hooks in bootstrap/node.js 2019-01-16 16:19:22 +08:00
js_stream_socket.js src: use consistent names for JSStream 2018-12-28 12:57:46 -08:00
linkedlist.js
net.js fs: make process.binding('fs') internal 2018-11-16 21:56:29 +09:00
options.js
priority_queue.js timers: fix priority queue removeAt 2018-11-14 20:38:00 -08:00
querystring.js lib: move encodeStr function to internal for reusable 2018-11-20 18:24:02 -08:00
queue_microtask.js process: make internal/queue_microtask.js more self-contained 2018-12-29 18:58:39 +08:00
readline.js lib: remove some useless assignments 2018-12-05 15:57:26 -08:00
readme.md
repl.js repl: add repl.setupHistory for programmatic repl 2019-02-11 14:30:26 -05:00
socket_list.js lib: convert to arrow function 2018-11-26 20:34:32 +05:30
stream_base_commons.js net,http2: merge setTimeout code 2019-01-27 17:20:13 +01:00
timers.js doc,lib,test: capitalize comment sentences 2018-12-17 17:14:35 +01:00
tls.js
trace_events_async_hooks.js lib: save primordials during bootstrap and use it in builtins 2019-02-02 05:40:47 +08:00
tty.js lib: converted element to lowercase in tty.js 2019-02-19 07:03:13 +01:00
url.js url: return backslashes from fileURLToPath on win 2019-01-11 07:17:44 +01:00
util.js inspector,vm: remove --eval wrapper 2019-02-03 20:40:16 +01:00
v8_prof_polyfill.js
v8_prof_processor.js lib: convert to Arrow Function 2018-11-28 14:59:07 +05:30
validators.js
worker.js worker: switch to internal assert module 2019-02-15 21:51:30 -08:00

Internal Modules

The modules in lib/internal are intended for internal use in Node.js core only, and are not accessible with require() from user modules. These modules can be changed at any time. Reliance on these modules outside of core is not supported in any way.