1

the question is how can I use IcedCoffeeScript (http://maxtaco.github.io/coffee-script) on my web-application based on ExpressJS? Now I use vanilla CoffeeScript language in my application.

Thank you

Dmitriy
  • 683
  • 2
  • 13
  • 26

2 Answers2

1
  • install IcedCoffeeScript globally via npm (in similar way you installed CoffeeScript):

npm -g install iced-coffee-script

  • run your app written in IcedCoffeeScript (so Coffee + await, defer keywords)

iced app.coffee

Btw, IcedCoffeeScript is a superset of Coffee, so you will be able to execute your code written in Coffee using iced

Andrzej Karpuszonak
  • 8,896
  • 2
  • 38
  • 50
0

You can also use nodemon with IcedCoffeeScript for development, like this: nodemon -x iced app.iced.

Ionut-Cristian Florescu
  • 1,798
  • 1
  • 10
  • 11