KSKapil Sarkarinkapil2.hashnode.dev·Sep 4, 2024 · 5 min readmodule. 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...00
KSKapil Sarkarinkapil2.hashnode.dev·Aug 28, 2024 · 3 min readLet'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...00
KSKapil Sarkarinkapil2.hashnode.dev·Aug 21, 2024 · 5 min readJava 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...00
KSKapil Sarkarinkapil2.hashnode.dev·Aug 15, 2024 · 3 min readIntroduction 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...00
KSKapil Sarkarinkapil2.hashnode.dev·Feb 13, 2023 · 3 min readDOM -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...00