现在没有时间提供一个恰当的重现,但可以通过以下内容说明基本问题
`
~/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 编译的,因为我手头现在有这个。编译的 shim 看起来像这样
`
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_target*":"nodejs"};
goog.require("boot.cljs.main");
goog.require("cljs.nodejscli");
`
问题在于,{{path.resolve(".")}} 会返回启动 node 命令的目录,而不是 shim 目录。(见上面的 "Cannot find module..." 错误)
一个解决方案可能使用 {{__dirname}},它总是解析为当前文件的目录。这可能会对现有的设置造成一些破坏。