We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Updated [HowTo] Compiling and Setting Up Build Tools (markdown)
pogoscript, LLJS
Add a note about muffin, the handy helper for cake files.
added LiveScript
JsMaker
Updated CoffeeScript In The Wild (markdown)
doppio
Added some projects in.
moescript
js.js
meemoo
Updated Text editor plugins (markdown)
escodegen
Revert cd369e8^ ... cd369e8 on CoffeeScript build tools
add new item
Added info on Robusta tool
+perlito
Added js script for compiling a directory of coffeescript files
first stab
Updated The CoffeeScript Wiki (markdown)
simplify the implementation of Class by using an "extend" function.
DSLs doesn't need an apostrophe
Added headers for better legibility
`top` is the top-most Browser window. Making it into a local variable could break code when frames are present. Use Global instead.
On CoffeeScript version 1.2.0, the `implements` function was getting passed (and ignoring) the Cat properties: Class(base, implements(list, props), undefined) rather than Class(base, implements(list), props). Other solution is to redefines implements to more versatile: implements = (list, props...) -> item.prototype or item for item in list.concat(props);
Updated [extensibility] writing dsls (markdown)
Removed ambiguous use of "each" and "reduce" in SELECT example. Now example usage returns @name and @age instead of just @name.