node.js と Haxe を使用して、Haxe ファイルから node.js モジュールを生成し、生成されたモジュールを返す関数を作成する方法はありますか? Haxe を使用して node.js モジュールの作成を開始しましたが、モジュールをより簡単にインポートする方法が必要です。
function requireHaxe(variableToRequire, haxeFileLocation){
//generate a JavaScript module from the Haxe file, and then return the generated JavaScript module
}