从shell中,我可以调用Sweet.js编译器。
sjs -m macro-providing-module -o output-directory/file.js input-directory/file.sjs
如何在Node.js模块中执行相同的操作,以便将编译后的输出作为字符串输出而不是输出到指定文件?
var sweetjs = require('sweet.js');
var input = require('fs').readSync('input-directory/file.sjs');
var module = 'macro-providing-module';
var output = sweetjs(/* ??? */);
答案 0 :(得分:2)
它没有文档,因为当sweet.js获得良好的模块支持(使用ES6 import
而不是命令行标志)时,它将被更改/删除。但是对于0.4.0,您可以使用以下API从npm模块加载宏:
var sweet = require('sweet.js');
var mod = sweet.loadNodeModule(root, modulePath);
var out = sweet.compile(<contents>, {
modules: [mod]
});
root
参数是文件系统上开始查找节点模块的位置。通常,如果您正在创建命令行工具,则此值为process.cwd()
。 compile
采用一个选项对象,您可以在其中提供module
的数组。
如果您只想将字符串编译为模块,可以使用sweet.loadModule(<contents>)
。
同样,这个API只是一个止损点,将在不久的将来被删除。
修改:更正了compile
API