「Node.js」モジュールを呼び出すサンプル

2020年11月23日

1.モジュールの作成sample.js

exports.outMsg = function(){

    return "this is a sample data";
}

2.モジュールの読み込みmain.js

var cft= require('./sample.js');
console.log( cft.outMsg() );

 

Node.js

Posted by arkgame