【Node.js】オブジェクトを出力するモジュール

  • このエントリーをはてなブックマークに追加

オブジェクトを出力するモジュールを作る。



module.jsを作る。出力したいオブジェクトを設定する。


module.exports = {
text:"Hello World 2023",
number:100,
method:function(){console.log("hoge");}
};

index.jsを作る。文字列を出力する。


const obj = require("./module");

console.log(obj.text);
console.log(obj.number);
obj.method();

実行する。


C:\node\sample7>node index.js
Hello World 2023
100
hoge
  • このエントリーをはてなブックマークに追加

SNSでもご購読できます。

コメントを残す

*