0% found this document useful (0 votes)
40 views

JavaScript _ Importing and Exporting Modules - GeeksforGeeks

Uploaded by

Cong Toan Truong
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
40 views

JavaScript _ Importing and Exporting Modules - GeeksforGeeks

Uploaded by

Cong Toan Truong
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

7/13/2019 JavaScript | Importing and Exporting Modules - GeeksforGeeks

JavaScript | Importing and Exporting Modules


JavaScript Modules are basically libraries which are included in the given program. They are used for connecting two JavaScript
programs together to call the functions written in one program without writing the body of the functions itself in another program.

Importing a library: It means include a library in a program so that use the function is de ned in that library. For this, use ‘require’
function in which pass the library name with its relative path.
Example: Suppose a library is made in the same folder with le name library.js, then include the le by using require function:

const lib = require('./library')

which will return reference to that library. Now if there is area function de ned in the library, then use it as lib.area().

Exporting a library: There is a special object in JavaScript called module.exports. When some program include or import this module
(program), this object will be exposed. Therefore, all those functions that need to be exposed or need to be available so that it can
used in some other le, de ned in module.exports.

Expample : Write two different programs and then see how to use functions de ned in the library (Module) in given program. De ne
two simple functions in the library for calculating and printing area and perimeter of a rectangle when provided with length and

https://www.geeksforgeeks.org/javascript-importing-and-exporting-modules/ 5/10
7/13/2019 JavaScript | Importing and Exporting Modules - GeeksforGeeks

breadth. Then export the functions so that other programs can import them if needed and can use them.

 Exporting Module Example : library.js

<script>
// Area function
 let area = function (length, breadth) {
let a = length * breadth;
console.log('Area of the rectangle is ' + a + ' square unit');
}

// Perimeter function
let perimeter = function (length, breadth) {
let p = 2 * (length + breadth);
console.log('Perimeter of the rectangle is ' + p + ' unit');
}

// Making all functions available in this


// module to exports that we have made
// so that we can import this module and
// use these functions whenever we want.
module.exports = {
area,
perimeter
}
</script>

Importing Module Example

For importing any module, use a function called ‘Require’ which takes in the module name and if its user de ned module then its
relative path as argument and returns its reference.

The script.js contains the above JavaScript module (library.js).

Script.js

https://www.geeksforgeeks.org/javascript-importing-and-exporting-modules/ 6/10
7/13/2019 JavaScript | Importing and Exporting Modules - GeeksforGeeks

<script>


// Importing the module library containing
// area and perimeter functions.
 // " ./ " is used if both the files are in the same folder.
const lib = require('./library');

let length = 10;


let breadth = 5;

// Calling the functions


// defined in the lib module
lib.area(length, breadth);
lib.perimeter(length, breadth);
</script>

Output:

Area of the rectangle is 50 square unit


Perimeter of the rectangle is 30 unit

Note: To run the script rst make both les in the same folder and then run script.js using NodeJs interpreter in terminal.

Brazil Trade Data - Trade Statistics of Brazil OPEN


Get Brazil Trade Data with Foreign Buyers and Suppliers Name, Value, Qty and more details
exportgenius.in

Recommended Posts:
ReactJS | Importing and Exporting
JavaScript | Modules
AngularJS | Modules
Dividing a Large le into Separate Modules in C/C++, Java and Python
https://www.geeksforgeeks.org/javascript-importing-and-exporting-modules/ 7/10

You might also like