runjs does not allow passing debug flags to the coffee parser. In this case, since the second argument is "--nodejs" and not "app.coffee", runjs uses node instead of coffee as the parser, which obviously fails.
Placing the flags after "app.coffee" as follows does not trigger the debugger: runjs app.coffee --nodejs --debug.
runjs does not allow passing debug flags to the coffee parser. In this case, since the second argument is "--nodejs" and not "app.coffee", runjs uses node instead of coffee as the parser, which obviously fails.
Placing the flags after "app.coffee" as follows does not trigger the debugger:
runjs app.coffee --nodejs --debug.