From ddcab72173bac2c4b9123e2d2b8a450bf3351d5a Mon Sep 17 00:00:00 2001 From: cjihrig Date: Mon, 23 Dec 2019 23:15:58 -0500 Subject: [PATCH 1/3] doc: add --enable-source-maps man page entry This commit adds the --enable-source-maps CLI flag to the man page. PR-URL: https://github.com/nodejs/node/pull/31077 Reviewed-By: Gireesh Punathil Reviewed-By: Beth Griggs Reviewed-By: Anto Aravinth Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell Reviewed-By: Luigi Pinca --- doc/node.1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/node.1 b/doc/node.1 index 4c6347788942ea..99359acc2c07a4 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -110,6 +110,9 @@ Enable FIPS-compliant crypto at startup. Requires Node.js to be built with .Sy ./configure --openssl-fips . . +.It Fl -enable-source-maps +Enable experimental Source Map V3 support for stack traces. +. .It Fl -experimental-conditional-exports Enable experimental support for "require" and "node" conditional export targets. . From 5128eacaa2ef84e391188033353083b664035b2b Mon Sep 17 00:00:00 2001 From: cjihrig Date: Mon, 23 Dec 2019 23:19:26 -0500 Subject: [PATCH 2/3] doc: add --force-context-aware man page entry This commit adds the --force-context-aware CLI flag to the man page. PR-URL: https://github.com/nodejs/node/pull/31077 Reviewed-By: Gireesh Punathil Reviewed-By: Beth Griggs Reviewed-By: Anto Aravinth Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell Reviewed-By: Luigi Pinca --- doc/node.1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/node.1 b/doc/node.1 index 99359acc2c07a4..2c9d0fd4a816cc 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -150,6 +150,9 @@ Enable experimental WebAssembly System Interface support. .It Fl -experimental-wasm-modules Enable experimental WebAssembly module support. . +.It Fl -force-context-aware +Disable loading native addons that are not context-aware. +. .It Fl -force-fips Force FIPS-compliant crypto on startup (Cannot be disabled from script code). From 5289f80eadafcc508b24d5817f0ec416eccf8404 Mon Sep 17 00:00:00 2001 From: cjihrig Date: Mon, 23 Dec 2019 23:21:01 -0500 Subject: [PATCH 3/3] doc: add --inspect-publish-uid man page entry This commit adds the --inspect-publish-uid CLI flag to the man page. PR-URL: https://github.com/nodejs/node/pull/31077 Reviewed-By: Gireesh Punathil Reviewed-By: Beth Griggs Reviewed-By: Anto Aravinth Reviewed-By: Ruben Bridgewater Reviewed-By: James M Snell Reviewed-By: Luigi Pinca --- doc/node.1 | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/node.1 b/doc/node.1 index 2c9d0fd4a816cc..4f59dc7d269217 100644 --- a/doc/node.1 +++ b/doc/node.1 @@ -205,6 +205,15 @@ Set the .Ar host:port to be used when the inspector is activated. . +.It Fl -inspect-publish-uid=stderr,http +Specify how the inspector WebSocket URL is exposed. +Valid values are +.Sy stderr +and +.Sy http . +Default is +.Sy stderr,http . +. .It Fl -inspect Ns = Ns Ar [host:]port Activate inspector on .Ar host:port .