Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/diagnostics/live-debugging/using-inspector.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ of the application as it handles a business-critical workload.

## How To

[Debugging Node.js](/learn/diagnostics/debugging)
[Debugging Node.js](/learn/getting-started/debugging)
2 changes: 1 addition & 1 deletion pages/diagnostics/poor-performance/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ the others. When we do this locally, we usually try to optimize our code.

This document provides two simple ways to profile a Node.js application:

- [Using V8 Sampling Profiler](/learn/diagnostics/profiling)
- [Using V8 Sampling Profiler](/learn/getting-started/profiling)
- [Using Linux Perf](/learn/diagnostics/poor-performance/using-linux-perf)
2 changes: 1 addition & 1 deletion pages/getting-started/profiling.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,4 +288,4 @@ You may also find [how to create a flame graph][diagnostics flamegraph] helpful.

[profiler inside V8]: https://v8.dev/docs/profile
[benefits of asynchronous programming]: https://nodesource.com/blog/why-asynchronous
[diagnostics flamegraph]: /diagnostics/flame-graphs
[diagnostics flamegraph]: /learn/diagnostics/flame-graphs
4 changes: 2 additions & 2 deletions pages/getting-started/security-best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,8 @@ You can also collaborate with other projects and security experts through the [O
[Slowloris]: https://en.wikipedia.org/wiki/Slowloris_(computer_security)
[`http.Server`]: https://nodejs.org/api/http.html#class-httpserver
[http docs]: https://nodejs.org/api/http.html
[--inspect switch]: /diagnostics/debugging
[same-origin policy]: /diagnostics/debugging
[--inspect switch]: /learn/getting-started/debugging
[same-origin policy]: /learn/getting-started/debugging
[DNS Rebinding wiki]: https://en.wikipedia.org/wiki/DNS_rebinding
[files property]: https://docs.npmjs.com/cli/configuring-npm/package-json#files
[unpublish the package]: https://docs.npmjs.com/unpublishing-packages-from-the-registry
Expand Down
2 changes: 1 addition & 1 deletion pages/modules/how-to-use-streams.md
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ This work is derived from content published by [Matteo Collina][] in [Platformat
[`WritableStream`]: https://nodejs.org/api/webstreams.html#class-writablestream
[`TransformStream`]: https://nodejs.org/api/webstreams.html#class-transformstream
[`WHATWG Streams Standard`]: https://streams.spec.whatwg.org/
[`backpressure guide`]: /asynchronous-work/backpressuring-in-streams
[`backpressure guide`]: /learn/modules/backpressuring-in-streams
[`fs.readStream`]: https://nodejs.org/api/fs.html#class-fsreadstream
[`http.IncomingMessage`]: https://nodejs.org/api/http.html#class-httpincomingmessage
[`process.stdin`]: https://nodejs.org/api/process.html#processstdin
Expand Down
Loading