From 049379521e0a12b87e59f519896590edbe63b89b Mon Sep 17 00:00:00 2001 From: Robert Eisenman Date: Tue, 21 Apr 2026 02:17:15 -0700 Subject: [PATCH] Update link to new page --- nodeJS/introduction_to_nodeJS/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodeJS/introduction_to_nodeJS/getting_started.md b/nodeJS/introduction_to_nodeJS/getting_started.md index 15291ab83a6..e6c7fd8ea31 100644 --- a/nodeJS/introduction_to_nodeJS/getting_started.md +++ b/nodeJS/introduction_to_nodeJS/getting_started.md @@ -31,7 +31,7 @@ Recently the NodeJS.dev team removed a large amount of content from their websit - Let's dive in and start looking at Node server-side code! We will be hopping around lessons in the [NodeJS.org](https://nodejs.org/en/learn) docs which you should follow along. - Learn [how to run Node.js scripts from the terminal](https://nodejs.org/en/learn/command-line/run-nodejs-scripts-from-the-command-line). - HTTP Module - - Learn [how to make HTTP requests with Node](https://github.com/nodejs/nodejs.dev/blob/aa4239e87a5adc992fdb709c20aebb5f6da77f86/content/learn/node-js-web-server/node-make-http-requests.en.md). + - Learn [how to make HTTP requests with Node](https://nodejs.org/learn/getting-started/fetch). - Check out the docs for [Node's http module](https://nodejs.org/api/http.html). In particular, check out `http.createServer`. The documentation shows optional parameters it can accept which you may or may not use. For now, you just need to know that the `createServer` method creates an HTTP server that accepts handlers that will be executed every time we get a request. - File System - First, take a look at the [fs module](https://github.com/nodejs/nodejs.dev/blob/aa4239e87a5adc992fdb709c20aebb5f6da77f86/content/learn/node-js-modules/node-module-fs.en.md) that we use heavily for working with files in Node.