Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

การสร้างโมดูลที่กำหนดเองใน Node.js


โมดูล node.js เป็นแพ็กเกจประเภทหนึ่งที่มีฟังก์ชันหรือวิธีการบางอย่างที่ผู้นำเข้าจะนำไปใช้ บางโมดูลมีอยู่บนเว็บเพื่อให้นักพัฒนาใช้งาน เช่น fs, fs-extra, crypto, สตรีม ฯลฯ คุณยังสามารถสร้างแพ็คเกจของคุณเองและใช้ในโค้ดของคุณได้

ไวยากรณ์

exports.function_name = function(arg1, arg2, ....argN) {
   // Put your function body here...
};

ตัวอย่าง - โมดูลโหนดแบบกำหนดเอง

สร้างไฟล์สองไฟล์ที่มีชื่อ – calc.js และ index.js แล้วคัดลอกข้อมูลโค้ดด้านล่าง

calc.js เป็นโมดูลโหนดที่กำหนดเองซึ่งจะเก็บฟังก์ชันของโหนดไว้

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:\home\node>> 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