Skip to content

Instantly share code, notes, and snippets.

@salvatorecapolupo
Last active June 29, 2016 16:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save salvatorecapolupo/d89b7e11e065b86c1bd5 to your computer and use it in GitHub Desktop.
Save salvatorecapolupo/d89b7e11e065b86c1bd5 to your computer and use it in GitHub Desktop.
coffeescript basic: how to install and basic massive compiling
# Using Mac you will need importing cooffe-script library:
sudo npm install -g coffee-script
# now you can convert cooffee-scripts ("compressed" version of a normal javascript file) into more familiar JS, i.e
coffee -c --output gamejs/ game/
#which converts all file into game/ in a new directory called gamejs/.
#Info: http://coffeescript.org
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment