
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 是自定义节点将保存节点功能的模块。
百度文心百中
百度大模型语义搜索体验中心
22 查看详情
index.js 将导入 calc.js 并在节点进程中使用它。
calc.js
//Creating a custom node module// And making different functionsexports.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 statementvar calculator = require('./calc');var a = 21 , b = 67console.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.jsAddition of 21 and 67 is 88Subtraction of 21 and 67 is -46Multiplication of 21 and 67 is 1407Division of 21 and 67 is 0.31343283582089554
以上就是在 Node.js 中创建自定义模块的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/527787.html
微信扫一扫
支付宝扫一扫