从外壳,我可以调用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(/* ??? */);
最佳答案
它没有记录,因为当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
带有一个options对象,您可以在其中提供一个module
数组。如果只想将字符串编译为模块,则可以使用
sweet.loadModule(<contents>)
。同样,此API只是一个权宜之计,将在不久的将来被删除。
编辑:更正了
compile
API关于node.js - 在Node.js中将SweetJS编译为String,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21062468/