Thank you 😊, as already requested I would like to learn ReactJs from you .there are too many materials available in KZbin but no other can beat you .....
@johnkarki34 жыл бұрын
We are so blessed to have a instructor like you🙏🙏🙏.
@vivekberlia85824 жыл бұрын
Thanks koushik, Very informative video
@HadiAriakia4 жыл бұрын
I truly like how you present technical stuffs :). Awesome job mate.
@digvijaypatil53584 жыл бұрын
Thanks for clearing way towards using Node.js
@ramvadapu4 жыл бұрын
Hi Koushik - You are amazingly awesome in explaining the concepts! Thank you!
@adityaranjanmohanty59804 жыл бұрын
Everytime i watch your video, I just love it😍😍. Eagerly waiting for the next video.
@promohican82222 жыл бұрын
Great explanation
@vikashranjanjha26494 жыл бұрын
amazing tutorial, never show such nice explanations.
@amreenfatemasurani68514 жыл бұрын
Could we get tutorial series on Design Patterns in java. and how to decide which pattern to apply?
@chandrababu1334 жыл бұрын
I love your videos. Waiting for more contents in this node.js
@ganeshshetty84413 жыл бұрын
Can u give a small example where the main thread is blocked ?
@harshilparmar90764 жыл бұрын
Sir, If I use the module to import/export in-browser javascript file. It throwing cors error. Why? It is just normal javascript file not even requesting to any server. Can you explain? Thanks
@shredder_plays4 жыл бұрын
please do put a project too in the list after you cover basics.
@varunshrivastava6834 жыл бұрын
Can we use ES6 syntax in Node.js ? What about Typescript ?
@TheInfamousAlpha4 жыл бұрын
left it on a cliff hanger
@DeepakGupta-hj2dv4 жыл бұрын
Please make on series microservices..microservices using for developer?
@sourabhsahu9614 жыл бұрын
Yes +1 for this
@DeepakGupta-hj2dv4 жыл бұрын
amazing explanation..😊
@deshpande73364 жыл бұрын
Great video!
@elmokhliss48524 жыл бұрын
Thanks
@abidzai12854 жыл бұрын
please do a project with node js after basics cover.
@sreenivaspadala96834 жыл бұрын
Hi Koushik we need Reactjs course from you.
@stryyker94 жыл бұрын
what if you also added "require first.js" in add.js ; would it go into a loop ?
@alpersonmez8044 жыл бұрын
No
@Rajuvadarevu4 жыл бұрын
Test: If first.js is requiring add.js and add.js is requiring first.js Case1: node first.js When node interpreter will execute require('./first.js') in add.js, an Unfinished Copy of first.js exports object will be returned to add.js and add.js will execute completely and execution will return to first.js Case2: node add.js When node interpreter will execute require('./add.js') in first.js, an Unfinished Copy of add.js exports object will be returned to first.js and first.js will execute completely and execution will return to add.js To confirm, I used below snippets: first.js: var add = require('./add.js'); var testFirst = "first"; console.log(add); module.exports = testFirst; add.js: var first = require('./first.js'); var testAdd = "add"; console.log(first) module.exports = testAdd; Output: node first.js: {} add //first.js exports got ignored -- Unfinished Copy node add.js: {} first //add.js exports got ignored -- Unfinished Copy
@Harindervir464 жыл бұрын
pls sir post the videos daily
@anilgola58794 жыл бұрын
explanations are great but lectures are coming very slowly.
@DeepakGupta-hj2dv4 жыл бұрын
Please fast upload
@kumarvishalben4 жыл бұрын
What happens in modules, lives in modules.😄. 🙃 until unless you export it. 😁