现在没有时间提供适当的复制品,但基本问题可以通过以下内容说明
`
~/c/boot-cljs-example (master=) node target/main.js
module.js:338
throw err;
^
错误:找不到模块 '/Users/martin/code/boot-cljs-example/out/goog/bootstrap/nodejs.js'
at Function.Module._resolveFilename (module.js:336:15)
at Function.Module._load (module.js:278:25)
at Module.require (module.js:365:17)
at require (module.js:384:17)
at Object.<anonymous> (/Users/martin/code/boot-cljs-example/target/main.js:6:1)
at Module._compile (module.js:460:26)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Function.Module.runMain (module.js:501:10)
~/c/boot-cljs-example (master=) cd target/
~/c/b/target (master=) node main.js
开始...
`
这是用 boot 编译的,因为这是我此刻拥有的唯一办法。编译的包装器看起来像这样
`
var path = require("path");
try {
require("source-map-support").install();
} catch(err) {
}
require(path.join(path.resolve("."),"out","goog","bootstrap","nodejs.js"));
require(path.join(path.resolve("."),"out","cljs_deps.js"));
goog.global.CLOSURE_UNCOMPILED_DEFINES = {"cljs.core._STAR_targetSTAR":"nodejs"};
goog.require("boot.cljs.main");
goog.require("cljs.nodejscli");
`
问题在于 {{path.resolve(".")}} 会返回调用 {{node}} 命令的目录,而不是包装器的目录。 (参见上面 "Cannot find module..." 的错误)
一个解决方案可能使用 {{__dirname}},它始终解析为当前文件的目录。这可能会破坏现有的设置。