Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

Node.jsでカスタムモジュールを作成する


node.jsモジュールは、それらをインポートする人が使用する特定の関数またはメソッドを含む一種のパッケージです。一部のモジュールは、fs、fs-extra、crypto、streamなどの開発者が使用するためにWeb上に存在します。独自のパッケージを作成して、コードで使用することもできます。

構文

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

例-カスタムノードモジュール

calc.jsとindex.jsという名前の2つのファイルを作成し、以下のコードスニペットをコピーします。

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

  1. JavaScriptのカスタムエラー

    以下は、JavaScriptでカスタムエラーを実装するためのコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> &nb

  2. JavaScriptモジュール

    モジュールはES2015で導入されました。モジュールは、コードをより小さな部分に分割するために導入されました。モジュールには、クラスまたは関数を含めることができます。キーワードexportおよびimportは、変数、関数、オブジェクトをエクスポートし、それらを他のファイルにインポートするために使用されます。 注 −この例を実行するには、ローカルホストサーバーを実行する必要があります。 以下はJavaScriptのモジュールのコードです INDEX.html 例 <!DOCTYPE html> <html lang="en"> <he