Home:ALL Converter>Nodemon with IcedCoffeeScript

Nodemon with IcedCoffeeScript

Ask Time:2013-09-24T16:43:39         Author:Dmitriy

Json Formatter

First of all, I install nodemon globally:

npm install -g nodemon

Then I try to start my apllication using the following command:

nodemon app.iced

And I get such error: "SyntaxError: Unexpected token ILLEGAL". However, I can run my application without nodemon without any errors:

iced --nodejs --debug app.iced

What the problem is?

Author:Dmitriy,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/18976790/nodemon-with-icedcoffeescript
yy