Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

Node.js에서 사용자 정의 모듈 만들기

<시간/>

node.js 모듈은 임포트하는 사람들이 사용할 특정 기능이나 메소드를 포함하는 일종의 패키지입니다. fs, fs-extra, crypto, stream 등과 같은 일부 모듈은 개발자가 사용할 수 있도록 웹에 있습니다. 또한 자신만의 패키지를 만들어 코드에서 사용할 수도 있습니다.

구문

exports.function_name = function(arg1, arg2, ....argN) {
   // Put your function body here...
};

예 - 사용자 정의 노드 모듈

이름이 calc.js와 index.js인 두 개의 파일을 만들고 아래 코드 스니펫을 복사합니다.

calc.js는 노드 기능을 보유할 사용자 정의 노드 모듈입니다.

index.js는 calc.js를 가져와서 노드 프로세스에서 사용합니다.

calc.js

//Creating a custom node module
// And making different functions
exports.add = function (a, b) {
   return a + b; // Adding the numbers
};

exports.sub = function (a, b) {
   return a - b; // Subtracting the numbers
};

exports.mul = function (a, b) {
   return a * b; // Multiplying the numbers
};

exports.div = function (a, b) {
   return a / b; // Dividing the numbers
};

index.js

// Importing the custom node module with the below statement
var calculator = require('./calc');

var a = 21 , b = 67

console.log("Addition of " + a + " and " + b + " is " + calculator.add(a, b));

console.log("Subtraction of " + a + " and " + b + " is " + calculator.sub(a, b));

console.log("Multiplication of " + a + " and " + b + " is " + calculator.mul(a, b));

console.log("Division of " + a + " and " + b + " is " + calculator.div(a, b));

출력

C:\home\node>> node index.js
Addition of 21 and 67 is 88
Subtraction of 21 and 67 is -46
Multiplication of 21 and 67 is 1407
Division of 21 and 67 is 0.31343283582089554