【Node.js】文字列を出力するモジュール

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

文字列を出力するモジュールを作る。



module.jsを作る。出力したい文字列を設定する。


module.exports = "Hello World 2023";

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


const message = require("./module");
console.log(message);

実行する。


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

SNSでもご購読できます。

コメントを残す

*