Skip to content

Commit 845a142

Browse files
content(learn): Profiling a Node.js application (#7158)
* Added a more descriptive explanation as to what npm does, and what dependencies are. * Added a more descriptive explanation as to what npm does, and what dependencies are, including punctuation. * Update apps/site/pages/en/learn/getting-started/an-introduction-to-the-npm-package-manager.md Signed-off-by: Brian Muenzenmeyer <[email protected]> * Docs: Added an exaplanation as to what Profiling a Node.js application is. --------- Signed-off-by: Brian Muenzenmeyer <[email protected]> Co-authored-by: Brian Muenzenmeyer <[email protected]>
1 parent 914b960 commit 845a142

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

apps/site/pages/en/learn/getting-started/profiling.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ layout: learn
55

66
# Profiling Node.js Applications
77

8+
Profiling a Node.js application involves measuring its performance by analyzing
9+
the CPU, memory, and other runtime metrics while the application is running.
10+
This helps in identifying bottlenecks, high CPU usage, memory leaks, or slow
11+
function calls that may impact the application's efficiency, responsiveness
12+
and scalability.
13+
814
There are many third party tools available for profiling Node.js applications
915
but, in many cases, the easiest option is to use the Node.js built-in profiler.
1016
The built-in profiler uses the [profiler inside V8][] which samples the stack at

0 commit comments

Comments
 (0)