I'm actually trying to recompile the CoffeeScript compiler made in CoffeeScript from the github repository, but I cannot recompile a single coffee source file.
I tried to install coffee
compiler with npm
, but it gaves me a coffee
command that does this when I try to run:
coffee src/lexer.coffee
Or:
coffee -c src/lexer.coffee
Error: In lexer.coffee, Parse error on line 115: Unexpected '...'
at Object.parseError (/usr/lib/coffee-script/lib/coffee-script/parser.js:477:11)
at ...
[Long stacktrace here]
So how could I try to run directly a compiler present on github repository ? When I try to run bin/coffee
or bin/cake
executables scripts, even in root mode or with nodeJS, they print nothing and return 1.