Search results
This repository contains detailed notes from the Namaste Node.js course by Akshay Saini. The notes cover key concepts, in-depth explanations, and code examples that help demystify how Node.js works under the hood.
This repository contains detailed notes from the Namaste Node.js course by Akshay Saini. The notes cover key concepts, in-depth explanations, and code examples that help demystify how Node.js works under the hood.
Master NodeJS with the Namaste NodeJS course. Learn from basics to advanced concepts like asynchronous programming, event loops, and the V8 JavaScript engine. Gain hands-on experience and build scalable, high-performance server-side applications.
20 wrz 2024 · Namaste Node.js. The mission of this course is to make you fall in love with Node.js. We will delve into its core concepts and break down how everything works under the hood of Node.js. We'll start from the very basics and gradually move to advanced concepts, studying everything step by step.
What one should use? async-await is just a syntactic sugar around promise. Behind the scene async-await is just promise. So both are same, it’s just async-await is new way of writing code. async-await solves few of the short-coming of Promise like Promise Chaining. async-await also increases the readability.
This repository is a treasure trove of notes and assignments from the exhilarating Namaste Node.js course! 🚀🚀
18 maj 2022 · namaste-js-notes.txt. #L1 : How execution context and program stack works. - Eveything in js hapens inside execution context. - Execution context consist of : - Variable environment : Stores functions and variable in key value pair.