kapil2.hashnode.devmodule. export & requireModules in Node-JS : Modules are the collection of java script code which is private to itself and it exists independently. Node.js modules are powerful tools for organizing, reusing, and sharing code. It is the central to Node-JS development. Mo...Sep 4, 2024·5 min read
kapil2.hashnode.devLet's write CodeFOR RUNNING NODE-JS APPLICATION WE REQUIRE : We need to have Node-JS installed on our system. Node-JS includes the Node-JS runtime and NPM NODE-REPL : REPL(READ EVALUATE PRINT LOOP) The Node REPL is a powerful tool for Node.js developers, providi...Aug 28, 2024·3 min read
kapil2.hashnode.devJava Script On ServerWhat is a Server ? It is a type of system that handles requests from clients and provides services, data, or resources over a network. Example : web server like Apache which hosts websites and serves web pages to user's browsers when they request t...Aug 21, 2024·5 min read
kapil2.hashnode.devIntroduction to Node-JSWhat is Node-JS ? Node JS is a JavaScript runtime built on Chrome's V8 JavaScript engine. In other words Node -JS is built on top of "Chrome V8 Java Script Engine" which is known for high performance and efficient execution of JS Code Node JS is c...Aug 15, 2024·3 min read
kapil2.hashnode.devDOM -Document Object ModelDOM-The Introduction : DOM manipulation in javascript is an important factor while creating a web application using HTML and JavaScript. The Document Object Model (DOM) defines the logical structure of documents and the way a document is accessed and...Feb 13, 2023·3 min read