Follow the below steps for installation node Js in Windows First Download the .msi file from below website and install by doing next and install. https://nodejs.org/en/download/ When Install please open your command prompt window Short wayWindow + rIts comes up…
Category: Node Js
What is Node Js
Node.js is a JavaScript-based platform built on Google Chrome’s JavaScript V8 Engine. Node.js allows us to run JavaScript on the server. Create a file name app.js and paste below code like below screenshot After this run below commandnode app screenshot…
Node Event Module
Node has a concept of event-driven programming, in which code is written to react rather than be called. Node has an inbuilt event module about which you learn in-depth from here, we will use event listener and event emitter method…