首頁 > web前端 > js教程 > 主體

在 Node.js 中建立自訂模組

PHPz
發布: 2023-09-18 12:17:09
轉載
1208 人瀏覽過

在 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< /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));
登入後複製

輸出

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學習者快速成長!