Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In CofeeScript I am creating a global object by doing this:

window.App = 
  init : ->
    ...

Running coffee -w app.coffee complains window is not defined and doesn't rewrite the app.js file.

However, running coffee -c app.coffee compiles without a problem. How can I get coffee -w to accept global window?

CoffeeScript version is 1.1.1 (from coffee -v)

Thanks!

share|improve this question

1 Answer

up vote 8 down vote accepted

If you want to watch a file and have it compiled you need to do:

coffee -wc file.coffee

Using only the -w flag causes coffee to just run the script when it changes, as if you had run:

coffee file.coffee

In regards to the window is not defined error, if you want to make your script runnable both in a browser and in node.js, then you can do this:

root = exports ? this

class Thing
  constructor: (@name) ->
  whoAreYou: ->
    alert @name

root.Thing = Thing

Another useful flag combination is -wp which just pipes the compile javascript to standard out each time you make a change to the file.

share|improve this answer
awesome, thanks! – gryzzly Jun 14 '11 at 18:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.