Node.js

Working of Node.js | Blocking & Non-Blocking Architecture Explained (video)

Working of Node.js | Blocking & Non-Blocking Architecture Explained (video)

In this video, we will understand how Node.js works and then we will understand the difference between the blocking and non-blocking architecture. Node.js as we know is asynchronous and non-blocking and we will understand why this architecture that Node.js uses is better than a conventional blocking architecture. Follow me on:👉 Twitter: https://twitter.com/The_Nerdy_Dev👉 Instagram: https://instagram.com/thenerdydev👉 YouTube: https://youtube.com/thenerdydev PS â€“ Make…

Understanding the Events Reactivity System of Node.js and The Event Emitter Class [video]

Understanding the Events Reactivity System of Node.js and The Event Emitter Class [video]

In this video, we will learn about the Events Core Module in Node.js and then we will also understand the Event Emitter class of Node.js and the methods that we can use on the event emitter instances that we create to listen for an event ( on method ) and to fire an event, we have the emit method…

Node.js Architecture – Understanding its Internal Components [video]

Node.js Architecture – Understanding its Internal Components [video]

In this video, we will understand the Node.js Architecture namely the Application, V8 JavaScript Engine, Node.js Bindings, Libuv, Event Loop and Worker Threads Follow me on:👉 Twitter: https://twitter.com/The_Nerdy_Dev👉 Instagram: https://instagram.com/thenerdydev👉 YouTube: https://youtube.com/thenerdydev PS â€“ Make sure to subscribe to my YouTube Channel for FREE content on Web Development and loads of other technologies

(2021) – Web Developer Full Course : HTML, CSS, JavaScript, Node.js and MongoDB

I recently started to create a Full Web Developer Course on my YouTube Channel and recently finished with the HTML and the CSS Section of this FREE course. More videos will be up on upload. HTML Section CSS Section JavaScript Section This section covers the basics of JavaScript along with the modern features that the…

How Authentication works in REST APIs ?

Hey everyone 👋🏻, In this article, let us learn about more about REST APIs. This is the second article on the topic REST API. The first article on this topic can be read by clicking on the below link : https://dev.to/thenerdydev/what-is-a-rest-api-288l How authentication works in REST API ? So we again have our client and…

Rendering Dynamic Content and Template Engines

Hey everyone 👋🏻, In this article, let us learn about how we can render dynamic content to the client (which is not static). Let us first touch briefly on what a template engine is because rendering dynamic content is closely related to what a template engine will help us in achieving. Template Engines – a…

Advanced Authentication and Authorization

Hey everyone 👋🏻, In this article, let us learn about one of the most important concepts that you as a developer must have a solid knowledge of and that is Advanced Authentication and Authorization. Advanced Authentication and Authorization Let us consider the case of resetting of the user password. Password Resetting You have to implement authentication…