0

我有包含内容的脚本 test.js

console.log('Hello, this is EncloseJS test.');

以后会在这个文件中一些函数或者其他重要的代码。

我用封闭js编译它enclose test.js -o test.bin

现在,我需要在我的 javascript 应用程序中执行它。我尝试了类似的东西require('test.bin')eval('test.bin');但我认为,这不是正确的方法。

有人能帮帮我吗?谢谢。

4

1 回答 1

1

你可以这样尝试:

var exec = require('child_process').exec;
var cmd = 'path/to/test.bin';

exec(cmd, function(error, stdout, stderr) 

没试过,但请给我反馈

于 2017-01-12T08:34:57.467 回答