我只是想知道是否有可能使systemjs使用require(“remote”)。require(“nodemodule”),如果系统js无法在自己的注册表中找到该模块?
我认为当使用带有typescript和commonjs模块的电子时,类似这种机制的东西已经起作用了......
有人已经解决了这场斗争吗?
答案 0 :(得分:1)
最后一段时间后我找到了一个有效的解决方案:
var node_modules = ["child_process","fs"];
var fetch = System.fetch;
window.remote=require("remote");
System.fetch = function () {
var promise= fetch.apply(System,arguments);
return promise.then(function (js) {
for(var m of node_modules){
var requireExpression = 'require("'+m+'");';
var remoteRequire = 'remote.require("'+m+'");'
js=js.replace(requireExpression,remoteRequire);
}
return js;
});
}
System.import("aurelia-bootstrapper");
只需将所有导入的node_modules添加到数组中,就可以了。