From 5c721a33c3f13657a7407d668293b3cd2318a283 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 e496abe08344d1..5993929a8b8efd 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -272,6 +272,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-fetch`