インスタンス化された変数をエクスポートするモジュールを作成できますか?
モジュール:
var module1 = require('module1')
var Module2 = require('module2')
module1.dosomething(variables)
exports.module1 = module1
//or
module2 = new Modle2(variables)
module2.dosomething(variables)
exports.module2 = module2
上記のモジュールを他の多くのファイルで要求し、エクスポートをインスタンス化された変数として使用できますか、それとも必要なたびに再インスタンス化され、それらを必要とするファイル間で共有されませんか?
ありがとう!