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

PHPz
풀어 주다: 2023-09-18 12:17:09
앞으로
1208명이 탐색했습니다.

在 Node.js 中创建自定义模块

node.js 모듈은 이를 가져오는 사람들이 사용할 특정 기능이나 방법이 포함된 패키지입니다. fs, fs-extra, crypto, stream 등과 같이 개발자가 사용할 수 있는 여러 모듈이 웹에 있습니다. 자신만의 패키지를 만들어 코드에서 사용할 수도 있습니다.

Syntax

exports.function_name = function(arg1, arg2, ....argN) {
   // Put your function body here...
};
로그인 후 복사

예제 - 사용자 정의 노드 모듈

calc.js 및 index.js라는 두 개의 파일을 만들고 다음 코드 조각을 복사합니다.

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

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

calc.js< /p>

//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(&#39;./calc&#39;);

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));
로그인 후 복사

output

C:\homeode>> 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
로그인 후 복사

위 내용은 Node.js에서 사용자 정의 모듈 만들기의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:tutorialspoint.com
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!