
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 是自定义节点将保存节点功能的模块。
一个经过完善设计有着及其强大的会员互动和独特创新的内容管理系统。主要功能模块包括:文章频道、图片频道、下载频道、动漫频道、音乐频道、影视频道、商城频道、供求频道、采集管理 、专题频道等等。系统通用模块:用户管理、博客日志管理、相册管理、音乐盒管理、朋友圈管理、广告管理、公告管理、模板管理、网站信息配置、高级自定义SQL扩展标签,RSS在线订阅功能、网站统计、邮件列表、邮件群发、数据库管理、站内短消
0
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:\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中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号