Modules in Nodejs in Hindi – Nodejs Modules in Hindi

Posted by
Apply Link- Submit Resume

 इस Article में Modules in Nodejs in Hindi के बारे में पढ़ेंगे। जिसमे पढ़ेंगे What is Modules in Nodejs in Hindi, Types Of Modules in Nodejs in Hindi, How to use modules in Nodejs in Hindi आदि। 

Modules in Nodejs in Hindi

What is  Nodejs in Hindi 

Nodejs में Modules Set of Functions (Functions का Set) होता है। जिसे हम अपने Nodejs Application में Include कर सकते है। 

Modules एक Block of Code होता है, जिसका Code हम अपने Project में Reuse कर सकते है। ये Same javascript Library की तरह होता है। जिसका use करने से हमें ज्यादा Code लिखने की आवश्यकता नहीं पड़ती है।

Types of Nodejs Modules in Hindi 

Nodejs में Three types के Modules होते है। 

Core Modules  

Local Modules

Third Party Modules 

1. Core Modules

Nodejs Core Modules में  Minimum Functionalities include होती है। ये Nodejs Process Start होते ही Automatically Load हो जाते है। लेकिन इनको पहले हमें अपने project में Import करना होता है। इनको हम Require Function की मदद से Import (Load) कर सकते है। 

var http = require('http');

List of Some Core Modules in Hindi 

Modules name Description
http इससे हम Nodejs में Server Create कर सकते है। 
assert ये Set of Assertion Function होता है, testing के लिए 
fs इससे File System को handle कर सकते है। 
path इस Module की help से path के साथ deal कर सकते है।  

2. Local Modules

Local Modules वे Modules होते है। जिन्हे हम अपने application में Use करने के लिए locally Create करते है। इसके लिए हम एक Saperate file में Module Create करते है। फिर Same Require function की help से Application में load करते है। 
चलिए हम अपना एक Modules Create करते है। 

exports.add = function (x, y) { 
    return x + y; 
}; 
    
exports.sub = function (x, y) { 
    return x - y; 
}; 
    
exports.mult = function (x, y) { 
    return x * y; 
}; 
    
exports.div = function (x, y) { 
    return x / y; 
};

ये हम Module create हो गया है इसको एक seperate file में save करे। जैसे op.js

var calculator = require('./op'); 
    
var x = 25, y = 35; 
    
console.log("Addition of 25 and 35 is "
                   + calculator.add(x, y)); 
    
console.log("Subtraction of 25 and 35 is "
                   + calculator.sub(x, y)); 
    
console.log("Multiplication of 25 and 35 is "
                   + calculator.mult(x, y)); 
    
console.log("Division of 50 and 10 is " 
                   + calculator.div(x, y)); 
Output 

Addition of 25 and 35 is 60
Subtraction of 25 and 35 is -10
Multiplication of 25 and 35 is 875 
Division of 25 and 35 is 0.7142857142857143

इसे इस प्रकार से Load और Use कर सकते है।

Third Party Modules 

Third Party Module वे Module होते है। जो Online NPM के द्वारा available होते है। जैसे – express, angular, and react आदि।

Leave a Reply

Your email address will not be published. Required fields are marked *