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.
coffee -c path/to/source.coffee. In your question you've forgot the-cargument I don't know if it's a mistake you'v done in the terminal. - Emrys Myrooincoffee -vandnode -v? - Chris Kentcoffee -vandnode -vboth print nothing and still return 1. The same when I go into the cloned coffeescript repository and try to run./bin/coffee -v- Aracthor