From 49aaeaaa6b9ded3626285f14715517473a07173e Mon Sep 17 00:00:00 2001 From: Saurabh Daware Date: Sat, 6 Aug 2022 21:45:13 +0530 Subject: [PATCH] doc: add performance note to `--enable-source-maps` docs PR-URL: https://github.com/nodejs/node/pull/43817 Reviewed-By: Ben Coe Reviewed-By: Chengzhong Wu --- doc/api/cli.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/api/cli.md b/doc/api/cli.md index b94a0a586c5dc54..97864f15a64daf8 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -336,6 +336,11 @@ effort to report stack traces relative to the original source file. Overriding `Error.prepareStackTrace` prevents `--enable-source-maps` from modifying the stack trace. +Note, enabling source maps can introduce latency to your application +when `Error.stack` is accessed. If you access `Error.stack` frequently +in your application, take into account the performance implications +of `--enable-source-maps`. + ### `--experimental-global-customevent`