首页 > web前端 > js教程 > 正文

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

PHPz
发布: 2023-09-18 12:17:09
转载
1209 人浏览过

在 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学习者快速成长!