From 299b07a7f1094234860451b247c787185b106a0d Mon Sep 17 00:00:00 2001 From: RedYetiDev <38299977+RedYetiDev@users.noreply.github.com> Date: Fri, 5 Jul 2024 13:27:39 -0400 Subject: [PATCH] chore: remove reference to outdated examples --- .../pages/en/learn/getting-started/introduction-to-nodejs.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/site/pages/en/learn/getting-started/introduction-to-nodejs.md b/apps/site/pages/en/learn/getting-started/introduction-to-nodejs.md index d7c5d2af96a65..503459952a002 100644 --- a/apps/site/pages/en/learn/getting-started/introduction-to-nodejs.md +++ b/apps/site/pages/en/learn/getting-started/introduction-to-nodejs.md @@ -95,7 +95,3 @@ and we close the response, adding the content as an argument to `end()`: ```js res.end('Hello World\n'); ``` - -### More Examples - -See https://github.com/nodejs/examples for a list of Node.js examples that go beyond hello world.