NodeJs • Let’s bust some myths about NodeJs? • What you can build with NodeJs • Hello World NodeJs • Introduction to core modules of NodeJs • Create NodeJS module • API development with NodeJs • NodeJs WebSocket • NodeJs Database Connection • Machine Learning with NodeJs • Q & A
platform run time environment • Specifically used for developing server side web applications and Networking Applications • NodeJS uses event driven non blocking I/O model
get data set 1”); fetchDataSet1(params); console.log(“Prepare to get data set 2”) fetchDataSet2(params); console.log(“Prepare to get data set 3”) fetchDataSet3(params);
console.log(“Prepare to get data set 1”); fetchDataSet1(params, function(){ console.log(“Data set 1 is available”) }); console.log(“Prepare to get data set 2”) fetchDataSet2(params, function(){ console.log(“Data set 2 is available”) }); console.log(“Prepare to get data set 3”) fetchDataSet3(params, function(){ console.log(“Data set 3 is available”) });
software registry • NPM is free • It’s sole purpose is open source contribution • NPM is part of NodeJS installation Download it from official Website https://nodejs.org
software registry • NPM is free • It’s sole purpose is open source contribution • NPM is part of NodeJS installation Download it from official Website https://nodejs.org