当我调用时,我能够将咖啡文件编译为与 .coffee/.js 文件位于同一目录中的 .map 文件
coffee --nodejs --debug-brk app.coffee
并启动节点检查器。应用程序文件的 js 版本在 chrome 中加载。我错过了什么?
这是chrome为three.coffee文件显示的内容..
(function (exports, require, module, __filename, __dirname) { // Generated by CoffeeScript 1.6.2
(function() {
app.get('/three', function(req, res) {
debugger; return res.send('three/teedde');
});
}).call(this);
/*
//@ sourceMappingURL=three.map
*/
});
谢谢