1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

fix all nodejs doc redirection from .dev to .org (#5134)

This commit is contained in:
dev-aly3n
2024-02-04 19:39:29 +03:30
committed by GitHub
parent 780402afd6
commit e2f7abe69a
11 changed files with 12 additions and 11 deletions

View File

@@ -13,4 +13,4 @@ Visit the following resources to learn more:
- [Node.js Tutorial for Beginners](https://www.youtube.com/watch?v=TlB_eWDSMt4)
- [W3Schools Node.js Tutorial](https://www.w3schools.com/nodejs/)
- [What is NPM?](https://www.w3schools.com/nodejs/nodejs_npm.asp)
- [Official Documentation](https://nodejs.dev/en/learn/)
- [Official Documentation](https://nodejs.org/en/learn/getting-started/introduction-to-nodejs)

View File

@@ -5,6 +5,6 @@ Node.js is an open-source and cross-platform JavaScript runtime environment. It
Visit the following resources to learn more:
- [Official Website](https://nodejs.org/en/about/)
- [Learn Node.js Official Website](https://nodejs.dev/en/learn/)
- [Learn Node.js Official Website](https://nodejs.org/en/learn/getting-started/introduction-to-nodejs)
- [Node.JS Introduction](https://www.w3schools.com/nodejs/nodejs_intro.asp)
- [Node.js and Express.js Full Course](https://www.youtube.com/watch?v=Oe421EPjeBE)

View File

@@ -6,6 +6,6 @@ Visit the following resources to learn more:
- [Official Website](https://nodejs.org/en/about/)
- [Node.JS Introduction](https://www.w3schools.com/nodejs/nodejs_intro.asp)
- [Official Website](https://nodejs.dev/en/learn/)
- [Official Website](https://nodejs.org/en/learn/getting-started/introduction-to-nodejs)
- [What is Node.js?](https://www.youtube.com/watch?v=uVwtVBpw7RQ)
- [How Node.js Works?](https://www.youtube.com/watch?v=jOupHNvDIq8)

View File

@@ -5,6 +5,6 @@ Node.js is a cross-platform runtime, perfect for a wide range of use cases. Its
Visit the following resources to learn more:
- [Pros of Node.js](https://www.freecodecamp.org/news/what-are-the-advantages-of-node-js/)
- [Learn Node.js](https://nodejs.dev/en/learn/)
- [Learn Node.js](https://nodejs.org/en/learn/getting-started/introduction-to-nodejs)
- [Why Choose Node.js?](https://medium.com/selleo/why-choose-node-js-b0091ad6c3fc)
- [5 Reasons to Choose Node.js](https://www.bitovi.com/blog/5-reasons-to-choose-nodejs)

View File

@@ -8,4 +8,5 @@ Visit the following resources to learn more:
- [JavaScript Visualized: Event Loop](https://dev.to/lydiahallie/javascript-visualized-event-loop-3dif)
- [The Node.js Event Loop](https://www.coursera.org/lecture/secure-full-stack-mean-developer/the-node-js-event-loop-j5fbT)
- [The Complete Node js: The Node js Event Loop](https://www.youtube.com/watch?v=6YgsqXlUoTM)
- [The NodeJS Event loop](https://nodejs.dev/en/learn/the-nodejs-event-loop/)
- [The NodeJS Event loop](https://nodejs.org/en/guides/event-loop-timers-and-nexttick)
- [Don't Block the Event Loop](https://nodejs.org/en/guides/dont-block-the-event-loop)

View File

@@ -4,5 +4,5 @@ In Node.js, an event can be described simply as a string with a corresponding ca
Visit the following resources to learn more:
- [What are Event Emitters?](https://nodejs.dev/en/learn/the-nodejs-event-emitter/)
- [What are Event Emitters?](https://nodejs.org/en/learn/asynchronous-work/the-nodejs-event-emitter)
- [Using Event Emitters in Node.js](https://www.digitalocean.com/community/tutorials/using-event-emitters-in-node-js)

View File

@@ -5,4 +5,4 @@ Node.js, being an asynchronous platform, doesn't wait around for things like fil
Visit the following resources to learn more:
- [What are callbacks?](https://developer.mozilla.org/en-US/docs/Glossary/Callback_function)
- [Asynchronicity in Programming Languages](https://nodejs.dev/en/learn/javascript-asynchronous-programming-and-callbacks/)
- [Asynchronicity in Programming Languages](https://nodejs.org/en/learn/asynchronous-work/javascript-asynchronous-programming-and-callbacks)

View File

@@ -5,4 +5,4 @@ The `setImmediate` function delays the execution of a function to be called afte
Visit the following resources to learn more:
- [Understanding setImmediate](https://developer.mozilla.org/en-US/docs/Web/API/Window/setImmediate)
- [Understanding setImmediate](https://nodejs.dev/en/learn/understanding-setimmediate/)
- [Understanding setImmediate](https://nodejs.org/en/learn/asynchronous-work/understanding-setimmediate)

View File

@@ -4,6 +4,6 @@ Every time the event loop takes a full trip, we call it a tick. When we pass a f
Visit the following resources to learn more:
- [Understanding Process.NextTick()](https://nodejs.dev/en/learn/understanding-processnexttick/)
- [Understanding Process.NextTick()](https://nodejs.org/en/learn/asynchronous-work/understanding-processnexttick)
- [The Node.js process.nextTick()](https://nodejs.org/en/docs/guides/event-loop-timers-and-nexttick/)
- [The process.nextTick Function](https://www.youtube.com/watch?v=-niA5XOlCWI)

View File

@@ -5,5 +5,5 @@ The `path` module provides utilities for working with file and directory paths.
Visit the following resources to learn more:
- [Official Website](https://nodejs.org/api/path.html)
- [Official Website](https://nodejs.dev/en/learn/nodejs-file-paths/)
- [Official Website](https://nodejs.org/en/learn/manipulating-files/nodejs-file-paths)
- [Path Module in Node.js](https://youtu.be/j95Lwxvi9JY)

View File

@@ -6,4 +6,4 @@ Visit the following resources to learn more:
- [How To Create a Web Server in Node.js with the HTTP Module](https://www.digitalocean.com/community/tutorials/how-to-create-a-web-server-in-node-js-with-the-http-module)
- [Node.js Http Module](https://www.geeksforgeeks.org/node-js-http-module/)
- [The Node.js Http Module](https://nodejs.dev/en/learn/the-nodejs-http-module/)
- [The Node.js Http Module](https://nodejs.org/docs/latest/api/http.html)