From 37303119958773ac49ba68cf82ef0b94dbfd4b19 Mon Sep 17 00:00:00 2001 From: Yash <47192627+yashraj021@users.noreply.github.com> Date: Mon, 30 Jun 2025 13:37:27 +0530 Subject: [PATCH 1/2] docs: add video link for visual explanation of event loop Adds a link to a video by Bert Belder from the official Node.js YouTube channel. The video provides a visual walkthrough of the event loop and its phases, helping readers better understand the diagram and concepts in the "Event Loop Explained" section. Placed the link directly after the event loop diagram, where readers are first introduced to the phase concept. Signed-off-by: Yash <47192627+yashraj021@users.noreply.github.com> --- .../learn/asynchronous-work/event-loop-timers-and-nexttick.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md b/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md index a50114c04d8fd..f4f77687bd09d 100644 --- a/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md +++ b/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md @@ -88,6 +88,8 @@ Between each run of the event loop, Node.js checks if it is waiting for any asynchronous I/O or timers and shuts down cleanly if there are not any. +For a visual explanation of the Event Loop, watch [this video by Bert Belder](https://www.youtube.com/watch?v=PNa9OMajw9w&ab_channel=node.js). + ## Phases in Detail ### timers From 73fc0a5f6f0dd920fdf8e6f6386e682ec1c26ab1 Mon Sep 17 00:00:00 2001 From: Yash <47192627+yashraj021@users.noreply.github.com> Date: Mon, 30 Jun 2025 13:50:53 +0530 Subject: [PATCH 2/2] docs: add video link for visual explanation of event loop Adds a link to a video by Bert Belder from the official Node.js YouTube channel. The video provides a visual walkthrough of the event loop and its phases, helping readers better understand the diagram and concepts in the "Event Loop Explained" section. Placed the link directly after the event loop diagram, where readers are first introduced to the phase concept. Signed-off-by: Yash <47192627+yashraj021@users.noreply.github.com> --- .../learn/asynchronous-work/event-loop-timers-and-nexttick.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md b/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md index f4f77687bd09d..d45912b2217ad 100644 --- a/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md +++ b/apps/site/pages/en/learn/asynchronous-work/event-loop-timers-and-nexttick.md @@ -88,7 +88,7 @@ Between each run of the event loop, Node.js checks if it is waiting for any asynchronous I/O or timers and shuts down cleanly if there are not any. -For a visual explanation of the Event Loop, watch [this video by Bert Belder](https://www.youtube.com/watch?v=PNa9OMajw9w&ab_channel=node.js). +For a visual walkthrough of the event loop phases, you can watch [this video by Bert Belder](https://www.youtube.com/watch?v=PNa9OMajw9w&ab_channel=node.js). ## Phases in Detail